edink Sun Mar 4 00:41:36 2007 UTC
Modified files:
/php-src/win32/build Makefile
Log:
MFB: Check that manifest file exists before trying to embed it
http://cvs.php.net/viewvc.cgi/php-src/win32/build/Makefile?r1=1.43&r2=1.44&diff_format=u
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.43 php-src/win32/build/Makefile:1.44
--- php-src/win32/build/Makefile:1.43 Mon Jan 29 04:40:46 2007
+++ php-src/win32/build/Makefile Sun Mar 4 00:41:36 2007
@@ -14,7 +14,7 @@
# | Author: Wez Furlong <[EMAIL PROTECTED]> |
# +----------------------------------------------------------------------+
#
-# $Id: Makefile,v 1.43 2007/01/29 04:40:46 iliaa Exp $
+# $Id: Makefile,v 1.44 2007/03/04 00:41:36 edink Exp $
# This is the makefile template for the win32 build
CC="$(CL)"
@@ -59,8 +59,8 @@
_VC_MANIFEST_EMBED_EXE=
_VC_MANIFEST_EMBED_DLL=
!else
-_VC_MANIFEST_EMBED_EXE= $(MT) -nologo -manifest [EMAIL PROTECTED]
-outputresource:$@;1
-_VC_MANIFEST_EMBED_DLL= $(MT) -nologo -manifest [EMAIL PROTECTED]
-outputresource:$@;2
+_VC_MANIFEST_EMBED_EXE= if exist [EMAIL PROTECTED] $(MT) -nologo -manifest
[EMAIL PROTECTED] -outputresource:$@;1
+_VC_MANIFEST_EMBED_DLL= if exist [EMAIL PROTECTED] $(MT) -nologo -manifest
[EMAIL PROTECTED] -outputresource:$@;2
!endif
$(PHPDLL_RES): win32\build\template.rc
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php