From: Dmitry Stogov Date: Tue, 14 Nov 2006 14:20:41 +0000 (+0000) Subject: Fixed VC2005 support X-Git-Tag: RELEASE_1_0_0RC1~1016 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d7989a23db3a1bce377dbf5bf005876dcaf4fc7;p=php Fixed VC2005 support --- diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 12ba1b2e58..43df0d706f 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -226,7 +226,7 @@ function add_extra_dirs() for (i = 0; i < path.length; i++) { f = FSO.GetAbsolutePathName(path[i]); if (FSO.FolderExists(f)) { - if (f.indexOf(" ") >= 0) { + if (VCVERS <= 12 && f.indexOf(" ") >= 0) { ADD_FLAG("LDFLAGS", '/libpath:"\\"' + f + '\\"" '); } else { ADD_FLAG("LDFLAGS", '/libpath:"' + f + '" ');