]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix crosscompile script for the shared build flags.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 21 Sep 2021 12:34:56 +0000 (14:34 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 21 Sep 2021 12:34:56 +0000 (14:34 +0200)
doc/Changelog
makedist.sh

index c6667ff3e60d82d5074790d1dde5341655b2408f..192517ceb0a074323912ce7f6ba92b814f6c704f 100644 (file)
@@ -5,6 +5,7 @@
        - For the windows compile script disable gost.
        - Fix that on windows, use BIO_set_callback_ex instead of deprecated
          BIO_set_callback.
+       - Fix crosscompile script for the shared build flags.
 
 20 September 2021: Wouter
        - Fix crosscompile on windows to work with openssl 3.0.0 the
index 1aafb84679b2e0ae1d10bcb9308ee99efebc3a94..ea79e7b4661de337093d83d1b3cce574c0e71bf7 100755 (executable)
@@ -393,12 +393,12 @@ if [ "$DOWIN" = "yes" ]; then
     cd ../unbound_shared
     if test "$W64" = "no"; then
        # 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'
-               $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 --disable-gost $* $shared_cross_flag "$file_flag" "$file2_flag" "$file3_flag" CFLAGS='-O2 -g -fno-stack-protector'\
                || error_cleanup "Could not configure"
     else
-               echo "$configure"' --enable-debug --disable-flto '"$* $shared_cross_flag"
-        $configure --enable-debug --disable-flto $* $shared_cross_flag \
+               echo "$configure"' --enable-debug --disable-flto --disable-gost '"$* $shared_cross_flag"
+        $configure --enable-debug --disable-flto --disable-gost $* $shared_cross_flag \
                || error_cleanup "Could not configure"
     fi
     info "Calling make for DLL"