fmk             Sat Jan 13 03:32:14 2007 UTC

  Modified files:              
    /php-src/win32/build        Makefile 
  Log:
  Kill warnings when mt is not installed or is found as the tape command under 
cygwin
  
http://cvs.php.net/viewvc.cgi/php-src/win32/build/Makefile?r1=1.41&r2=1.42&diff_format=u
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.41 php-src/win32/build/Makefile:1.42
--- php-src/win32/build/Makefile:1.41   Mon Jan  8 00:26:35 2007
+++ php-src/win32/build/Makefile        Sat Jan 13 03:32:14 2007
@@ -14,7 +14,7 @@
 #  | Author: Wez Furlong <[EMAIL PROTECTED]>                           |
 #  +----------------------------------------------------------------------+
 #
-# $Id: Makefile,v 1.41 2007/01/08 00:26:35 edink Exp $
+# $Id: Makefile,v 1.42 2007/01/13 03:32:14 fmk Exp $
 # This is the makefile template for the win32 build
 
 CC="$(CL)"
@@ -55,8 +55,13 @@
 
 #      $(RC) /fo $(MCFILE) $(BUILD_DIR)\wsyslog.rc
 
+!if $(MT) == ""
+_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
+!endif
 
 $(PHPDLL_RES): win32\build\template.rc
        $(RC) /fo $(PHPDLL_RES) /d FILE_DESCRIPTION="\"PHP Script 
Interpreter\"" \

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to