mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
define NO_WRITE_TEMP_FILES
This commit is contained in:
2
.github/workflows/msys2.yml
vendored
2
.github/workflows/msys2.yml
vendored
@ -33,7 +33,7 @@ jobs:
|
|||||||
update: true
|
update: true
|
||||||
install: git ${{matrix.compiler}} autotools base-devel autoconf netcat
|
install: git ${{matrix.compiler}} autotools base-devel autoconf netcat
|
||||||
- name: configure wolfSSL
|
- name: configure wolfSSL
|
||||||
run: ./autogen.sh && ./configure CFLAGS="-DUSE_CERT_BUFFERS_2048 -DUSE_CERT_BUFFERS_256"
|
run: ./autogen.sh && ./configure CFLAGS="-DUSE_CERT_BUFFERS_2048 -DUSE_CERT_BUFFERS_256 -DNO_WRITE_TEMP_FILES"
|
||||||
- name: build wolfSSL
|
- name: build wolfSSL
|
||||||
run: make check
|
run: make check
|
||||||
- name: Display log
|
- name: Display log
|
||||||
|
@ -467,7 +467,7 @@ generate_port() {
|
|||||||
# Generate a random port number
|
# Generate a random port number
|
||||||
#-------------------------------------------------------------------------#
|
#-------------------------------------------------------------------------#
|
||||||
|
|
||||||
if [[ "$OSTYPE" == "linux"* || "$OSTYPE" == "msys"
|
if [[ "$OSTYPE" == "linux"* || "$OSTYPE" == "msys"
|
||||||
|| "$OSTYPE" == "cygwin" ]]; then
|
|| "$OSTYPE" == "cygwin" ]]; then
|
||||||
port=$(($(od -An -N2 /dev/urandom) % (65535-49512) + 49512))
|
port=$(($(od -An -N2 /dev/urandom) % (65535-49512) + 49512))
|
||||||
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
||||||
|
Reference in New Issue
Block a user