wez Mon Aug 2 21:03:32 2004 EDT
Modified files:
/php-src/win32/build config.w32
Log:
Explicitly check PATH before cygwin for mc.exe, as we want MS message compiler,
not GNU Midnight Commander.
http://cvs.php.net/diff.php/php-src/win32/build/config.w32?r1=1.29&r2=1.30&ty=u
Index: php-src/win32/build/config.w32
diff -u php-src/win32/build/config.w32:1.29 php-src/win32/build/config.w32:1.30
--- php-src/win32/build/config.w32:1.29 Sat Jul 31 20:29:50 2004
+++ php-src/win32/build/config.w32 Mon Aug 2 21:03:32 2004
@@ -1,5 +1,5 @@
// vim:ft=javascript
-// $Id: config.w32,v 1.29 2004/08/01 00:29:50 wez Exp $
+// $Id: config.w32,v 1.30 2004/08/03 01:03:32 wez Exp $
// "Master" config file; think of it as a configure.in
// equivalent.
@@ -16,7 +16,7 @@
PATH_PROG('re2c');
PATH_PROG('zip');
PATH_PROG('lemon');
-PATH_PROG('mc');
+PATH_PROG('mc', WshShell.Environment("Process").Item("PATH"));
ARG_ENABLE('debug', 'Compile with debugging symbols', "no");
ARG_ENABLE('zts', 'Thread safety', 'yes');
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php