mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix crosscompile script for the shared build flags.
This commit is contained in:
parent
9f26f397a9
commit
962cb07055
2 changed files with 5 additions and 4 deletions
|
|
@ -5,6 +5,7 @@
|
||||||
- For the windows compile script disable gost.
|
- For the windows compile script disable gost.
|
||||||
- Fix that on windows, use BIO_set_callback_ex instead of deprecated
|
- Fix that on windows, use BIO_set_callback_ex instead of deprecated
|
||||||
BIO_set_callback.
|
BIO_set_callback.
|
||||||
|
- Fix crosscompile script for the shared build flags.
|
||||||
|
|
||||||
20 September 2021: Wouter
|
20 September 2021: Wouter
|
||||||
- Fix crosscompile on windows to work with openssl 3.0.0 the
|
- Fix crosscompile on windows to work with openssl 3.0.0 the
|
||||||
|
|
|
||||||
|
|
@ -393,12 +393,12 @@ if [ "$DOWIN" = "yes" ]; then
|
||||||
cd ../unbound_shared
|
cd ../unbound_shared
|
||||||
if test "$W64" = "no"; then
|
if test "$W64" = "no"; then
|
||||||
# Disable stack-protector for 32-bit windows builds.
|
# Disable stack-protector for 32-bit windows builds.
|
||||||
echo "$configure"' --enable-debug --disable-flto '"$* $shared_cross_flag" "$file_flag" "$file2_flag" "$file3_flag" CFLAGS='-O2 -g -fno-stack-protector'
|
echo "$configure"' --enable-debug --disable-flto --disable-gost '"$* $shared_cross_flag" "$file_flag" "$file2_flag" "$file3_flag" CFLAGS='-O2 -g -fno-stack-protector'
|
||||||
$configure --enable-debug --disable-flto $* $shared_cross_flag "$file_flag" "$file2_flag" "$file3_flag" CFLAGS='-O2 -g -fno-stack-protector'\
|
$configure --enable-debug --disable-flto --disable-gost $* $shared_cross_flag "$file_flag" "$file2_flag" "$file3_flag" CFLAGS='-O2 -g -fno-stack-protector'\
|
||||||
|| error_cleanup "Could not configure"
|
|| error_cleanup "Could not configure"
|
||||||
else
|
else
|
||||||
echo "$configure"' --enable-debug --disable-flto '"$* $shared_cross_flag"
|
echo "$configure"' --enable-debug --disable-flto --disable-gost '"$* $shared_cross_flag"
|
||||||
$configure --enable-debug --disable-flto $* $shared_cross_flag \
|
$configure --enable-debug --disable-flto --disable-gost $* $shared_cross_flag \
|
||||||
|| error_cleanup "Could not configure"
|
|| error_cleanup "Could not configure"
|
||||||
fi
|
fi
|
||||||
info "Calling make for DLL"
|
info "Calling make for DLL"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue