From 00b5f0d0addd489062887b77030174bea8194ed5 Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Sat, 13 Jan 2007 03:32:14 +0000 Subject: [PATCH] Kill warnings when mt is not installed or is found as the tape command under cygwin --- win32/build/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/win32/build/Makefile b/win32/build/Makefile index da616a6654..9ab36be249 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -55,8 +55,13 @@ $(MCFILE): win32\build\wsyslog.mc # $(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 $@.manifest -outputresource:$@;1 _VC_MANIFEST_EMBED_DLL= $(MT) -nologo -manifest $@.manifest -outputresource:$@;2 +!endif $(PHPDLL_RES): win32\build\template.rc $(RC) /fo $(PHPDLL_RES) /d FILE_DESCRIPTION="\"PHP Script Interpreter\"" \ -- 2.40.0