mirror of
https://github.com/php/php-src.git
synced 2024-11-29 21:04:10 +08:00
Fixed VC2005 support
This commit is contained in:
parent
8983879bdd
commit
6d7989a23d
@ -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 + '" ');
|
||||
|
Loading…
Reference in New Issue
Block a user