From: Mark Andrews Date: Tue, 7 Nov 2006 20:49:07 +0000 (+0000) Subject: 2100. [port] win32: copy libeay32.dll to Build\Debug. X-Git-Tag: v9.5.0a1~95 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1afb6c548d9bbfcfb00d0799077faa17ad9a4f59;p=thirdparty%2Fbind9.git 2100. [port] win32: copy libeay32.dll to Build\Debug. Copy Debug\named-checkzone to Debug\named-compilezone. --- diff --git a/CHANGES b/CHANGES index fcd38821417..51a66ee0f07 100644 --- 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. + 2099. [port] win32: more manifiest issues. 2098. [bug] Race in rbtdb.c:no_references(), which occasionally diff --git a/win32utils/BuildPost.bat b/win32utils/BuildPost.bat index ce771243286..06d6d985390 100644 --- a/win32utils/BuildPost.bat +++ b/win32utils/BuildPost.bat @@ -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. diff --git a/win32utils/BuildSetup.bat b/win32utils/BuildSetup.bat index 084aaac1c37..85dffa1fdc7 100644 --- a/win32utils/BuildSetup.bat +++ b/win32utils/BuildSetup.bat @@ -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