From 33ba1f38d6453378fec28a1e967a411ed675e7fc Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Thu, 15 Dec 2016 11:34:24 +0000 Subject: [PATCH] - 64bit is default for windows builds. git-svn-id: file:///svn/unbound/trunk@3968 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 1 + makedist.sh | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/Changelog b/doc/Changelog index 542c1a2be..00ae2631b 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 15 December 2016: Wouter - iana portlist update + - 64bit is default for windows builds. 14 December 2016: Wouter - Fix #1178: attempt to fix setup error at end, pop result values diff --git a/makedist.sh b/makedist.sh index 15ff596cd..992c16f59 100755 --- a/makedist.sh +++ b/makedist.sh @@ -55,7 +55,7 @@ Generate a distribution tar file for unbound. Detected from svn working copy if not specified. -wssl openssl.xx.tar.gz Also build openssl from tarball for windows dist. -wxp expat.xx.tar.gz Also build expat from tarball for windows dist. - -w64 64bit windows compile. + -w32 32bit windows compile. -w ... Build windows binary dist. last args passed to configure. EOF exit 1 @@ -178,7 +178,7 @@ storehash () { SNAPSHOT="no" RC="no" DOWIN="no" -W64="no" +W64="yes" WINSSL="" WINEXPAT="" @@ -203,8 +203,8 @@ while [ "$1" ]; do WINEXPAT="$2" shift ;; - "-w64") - W64="yes" + "-w32") + W64="no" shift ;; "-w")