mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix #1226: provide official 32bit binary for windows.
git-svn-id: file:///svn/unbound/trunk@4028 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
3289d8482c
commit
7455717359
2 changed files with 14 additions and 3 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
27 February 2017: Wouter
|
27 February 2017: Wouter
|
||||||
- Fix #1227: Fix that Unbound control allows weak ciphersuits.
|
- Fix #1227: Fix that Unbound control allows weak ciphersuits.
|
||||||
|
- Fix #1226: provide official 32bit binary for windows.
|
||||||
|
|
||||||
24 February 2017: Wouter
|
24 February 2017: Wouter
|
||||||
- include sys/time.h for new shm code on NetBSD.
|
- include sys/time.h for new shm code on NetBSD.
|
||||||
|
|
|
||||||
16
makedist.sh
16
makedist.sh
|
|
@ -205,7 +205,6 @@ while [ "$1" ]; do
|
||||||
;;
|
;;
|
||||||
"-w32")
|
"-w32")
|
||||||
W64="no"
|
W64="no"
|
||||||
shift
|
|
||||||
;;
|
;;
|
||||||
"-w")
|
"-w")
|
||||||
DOWIN="yes"
|
DOWIN="yes"
|
||||||
|
|
@ -324,9 +323,20 @@ if [ "$DOWIN" = "yes" ]; then
|
||||||
# procedure for making unbound installer on mingw.
|
# procedure for making unbound installer on mingw.
|
||||||
info "Creating windows dist unbound $version"
|
info "Creating windows dist unbound $version"
|
||||||
info "Calling configure"
|
info "Calling configure"
|
||||||
echo "$configure"' --enable-debug --enable-static-exe --disable-flto '"$* $cross_flag"
|
if test "$W64" = "no"; then
|
||||||
$configure --enable-debug --enable-static-exe --disable-flto $* $cross_flag \
|
file_flag="--with-conf-file=C:\Program Files (x86)\Unbound\service.conf"
|
||||||
|
file2_flag="--with-rootkey-file=C:\Program Files (x86)\Unbound\root.key"
|
||||||
|
file3_flag="--with-rootcert-file=C:\Program Files (x86)\Unbound\icannbundle.pem"
|
||||||
|
version="$version"-w32
|
||||||
|
fi
|
||||||
|
echo "$configure"' --enable-debug --enable-static-exe --disable-flto '"$* $cross_flag "$file_flag" "$file2_flag" "$file3_flag""
|
||||||
|
if test "$W64" = "no"; then
|
||||||
|
$configure --enable-debug --enable-static-exe --disable-flto $* $cross_flag "$file_flag" "$file2_flag" "$file3_flag" \
|
||||||
|| error_cleanup "Could not configure"
|
|| error_cleanup "Could not configure"
|
||||||
|
else
|
||||||
|
$configure --enable-debug --enable-static-exe --disable-flto $* $cross_flag \
|
||||||
|
|| error_cleanup "Could not configure"
|
||||||
|
fi
|
||||||
info "Calling make"
|
info "Calling make"
|
||||||
make || error_cleanup "Could not make"
|
make || error_cleanup "Could not make"
|
||||||
info "Make complete"
|
info "Make complete"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue