[gs-cvs] rev 8392 - trunk/gs/src

ray at ghostscript.com ray at ghostscript.com
Tue Nov 20 10:36:58 PST 2007


Author: ray
Date: 2007-11-20 10:36:58 -0800 (Tue, 20 Nov 2007)
New Revision: 8392

Modified:
   trunk/gs/src/msvc32.mak
Log:
Fix broken MSVC 6 build issue caused by change in src/msvccmd.mak that puts
a LIBPATH into the link command line. MSVC linker can't handle spaces in the
LIBPATH even if within " ". We use an environment variable set by Microsoft
MSVC 6 'vcvars32.bat' instead. This can be manually set if needed.


Modified: trunk/gs/src/msvc32.mak
===================================================================
--- trunk/gs/src/msvc32.mak	2007-11-20 11:42:22 UTC (rev 8391)
+++ trunk/gs/src/msvc32.mak	2007-11-20 18:36:58 UTC (rev 8392)
@@ -405,7 +405,7 @@
 COMPBASE=
 SHAREDBASE=
 !else
-COMPBASE=$(DEVSTUDIO)\VC98
+COMPBASE=%MSVCDir%
 SHAREDBASE=$(DEVSTUDIO)\Common\MSDev98
 !endif
 !endif



More information about the gs-cvs mailing list