diff options
author | Internet Software Consortium, Inc <@isc.org> | 2009-12-26 18:04:05 -0700 |
---|---|---|
committer | Internet Software Consortium, Inc <@isc.org> | 2009-12-26 18:04:05 -0700 |
commit | 2d27fb027f207bdec109fad8c9c65f9d6278b3db (patch) | |
tree | 114b1faecb63eeee27fb44da040d619cac686d72 /win32utils | |
parent | 76d4794687ff55c501dc8f09f200494ef1ac429d (diff) | |
download | bind9-2d27fb027f207bdec109fad8c9c65f9d6278b3db.tar.gz |
9.7.0rc1
Diffstat (limited to 'win32utils')
-rw-r--r-- | win32utils/BINDBuild.dsw | 66 | ||||
-rw-r--r-- | win32utils/BuildAll.bat | 6 | ||||
-rw-r--r-- | win32utils/updateopenssl.pl | 5 |
3 files changed, 75 insertions, 2 deletions
diff --git a/win32utils/BINDBuild.dsw b/win32utils/BINDBuild.dsw index 6cda5681..c9af6df0 100644 --- a/win32utils/BINDBuild.dsw +++ b/win32utils/BINDBuild.dsw @@ -594,6 +594,72 @@ Package=<4> ###############################################################################
+Project: "arpaname"="..\bin\tools\win32\arpaname.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libisc
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "genrandom"="..\bin\tools\win32\genrandom.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libisc
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "journalprint"="..\bin\tools\win32\journalprint.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libdns
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libisc
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "nsec3hash"="..\bin\tools\win32\nsec3hash.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libdns
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libisc
+ End Project Dependency
+}}}
+
+###############################################################################
+
Global:
Package=<5>
diff --git a/win32utils/BuildAll.bat b/win32utils/BuildAll.bat index 5bf6fa30..9120ef48 100644 --- a/win32utils/BuildAll.bat +++ b/win32utils/BuildAll.bat @@ -119,6 +119,12 @@ nmake /nologo -f pk11list.mak CFG="pk11list - Win32 Release" NO_EXTERNAL_DEPS=" nmake /nologo -f pk11destroy.mak CFG="pk11destroy - Win32 Release" NO_EXTERNAL_DEPS="1"
cd ..\..
+cd tools\win32
+nmake /nologo -f arpaname.mak CFG="arpaname - Win32 Release" NO_EXTERNAL_DEPS="1"
+nmake /nologo -f genrandom.mak CFG="genrandom - Win32 Release" NO_EXTERNAL_DEPS="1"
+nmake /nologo -f nsec3hash.mak CFG="nsec3hash - Win32 Release" NO_EXTERNAL_DEPS="1"
+nmake /nologo -f journalprint.mak CFG="journalprint - Win32 Release" NO_EXTERNAL_DEPS="1"
+cd ..\..
rem This is the BIND 9 Installer
cd win32\BINDInstall
diff --git a/win32utils/updateopenssl.pl b/win32utils/updateopenssl.pl index 1c3ed539..b2b848dd 100644 --- a/win32utils/updateopenssl.pl +++ b/win32utils/updateopenssl.pl @@ -14,7 +14,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: updateopenssl.pl,v 1.10 2009/07/17 23:47:41 tbox Exp $ +# $Id: updateopenssl.pl,v 1.11 2009/12/04 21:59:24 marka Exp $ # updateopenssl.pl # This script locates the latest version of OpenSSL in the grandparent @@ -25,7 +25,8 @@ $path = "..\\..\\"; # List of files that need to be updated with the actual version of the # openssl directory -@filelist = ("../lib/dns/win32/libdns.mak", +@filelist = ("SetupLibs.bat", + "../lib/dns/win32/libdns.mak", "../lib/dns/win32/libdns.dsp"); # Locate the openssl directory |