From: Gregg Lewis Smith Date: Sat, 20 Jul 2013 00:50:11 +0000 (+0000) Subject: Install proper pcre DLL filename for debug build X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d05c668bf5da348b27086f9e8a195bc32a2798ab;p=thirdparty%2Fapache%2Fhttpd.git Install proper pcre DLL filename for debug build PR 55235 Submitted by Ben Reser git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1505073 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index 1b967256fca..c1f93cf3eb9 100644 --- a/Makefile.win +++ b/Makefile.win @@ -712,7 +712,11 @@ _copybin: !IF EXIST("srclib\serf") copy srclib\serf\$(LONG)\libserf.$(src_dll) "$(inst_dll)" <.y !ENDIF +!IF "$(SHORT)" == "D" + copy srclib\pcre\pcred.$(src_dll) "$(inst_dll)" <.y +!ELSE copy srclib\pcre\pcre.$(src_dll) "$(inst_dll)" <.y +!ENDIF copy modules\aaa\$(LONG)\mod_access_compat.$(src_so) "$(inst_so)" <.y copy modules\aaa\$(LONG)\mod_allowhandlers.$(src_so) "$(inst_so)" <.y copy modules\aaa\$(LONG)\mod_allowmethods.$(src_so) "$(inst_so)" <.y