]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2100. [port] win32: copy libeay32.dll to Build\Debug.
authorMark Andrews <marka@isc.org>
Tue, 7 Nov 2006 21:03:05 +0000 (21:03 +0000)
committerMark Andrews <marka@isc.org>
Tue, 7 Nov 2006 21:03:05 +0000 (21:03 +0000)
                        Copy Debug\named-checkzone to Debug\named-compilezone.

CHANGES
win32utils/BuildPost.bat
win32utils/BuildSetup.bat

diff --git a/CHANGES b/CHANGES
index bfa6c8fa8cd3d9b818f7c132a60b69f536eed201..23eaa9c086e40e7fd1bdb0a49cada565e2b767fd 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2100.  [port]          win32: copy libeay32.dll to Build\Debug.
+                       Copy Debug\named-checkzone to Debug\named-compilezone.
+
 2098.  [bug]           Race in rbtdb.c:no_references(), which occasionally
                        triggered an INSIST failure about the node lock
                        reference.  [RT #16411]
index ce77124328653e5684d9b56409e11ec3d2838bb2..06d6d9853909f0cf6209ba2ba54d0b77f94545fd 100644 (file)
@@ -20,6 +20,8 @@ rem This script does the final stages if BINDBuild.dsw is used.
 echo Copying named-checkzone.exe to named-compilezone.exe
 
 copy /Y ..\Build\Release\named-checkzone.exe ..\Build\Release\named-compilezone.exe
+if exist ..\Build\Debug\named-checkzone.exe copy /Y ..\Build\Debug\named-checkzone.exe ..\Build\Debug\named-compilezone.exe
+if exist ..\Build\Debug\named-checkzone.ilk copy /Y ..\Build\Debug\named-checkzone.ilk ..\Build\Debug\named-compilezone.ilk
 
 echo Done.
 
index 084aaac1c37f0c2e8e5ce832cd561400465dbae5..85dffa1fdc7861168d2b8fe83e946a547a4db868 100644 (file)
@@ -39,6 +39,7 @@ rem Make sure that the Build directories are there.
 
 if NOT Exist ..\Build mkdir ..\Build
 if NOT Exist ..\Build\Release mkdir ..\Build\Release
+if NOT Exist ..\Build\Debug mkdir ..\Build\Debug
 
 echo Copying the ARM and the Installation Notes.
 
@@ -54,6 +55,6 @@ copy ..\FAQ ..\Build\Release
 echo Copying the OpenSSL DLL.
 
 copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Release\
-
+copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Debug\
 
 rem Done