wez Tue Dec 2 20:10:05 2003 EDT
Modified files:
/php-src/win32/build config.w32
Log:
avoid vs.net specific option for now
Index: php-src/win32/build/config.w32
diff -u php-src/win32/build/config.w32:1.3 php-src/win32/build/config.w32:1.4
--- php-src/win32/build/config.w32:1.3 Tue Dec 2 19:46:40 2003
+++ php-src/win32/build/config.w32 Tue Dec 2 20:10:03 2003
@@ -1,5 +1,5 @@
// vim:ft=javascript
-// $Id: config.w32,v 1.3 2003/12/03 00:46:40 wez Exp $
+// $Id: config.w32,v 1.4 2003/12/03 01:10:03 wez Exp $
// "Master" config file; think of it as a configure.in
// equivalent.
@@ -54,7 +54,9 @@
} else {
// Equivalent to Release_TSInline build -> best optimization
ADD_FLAG("CFLAGS", "/LD /MD /W3 /O2 /D NDebug /D NDEBUG \
-/D ZEND_WIN32_FORCE_INLINE /GB /GF /GS /D ZEND_DEBUG=0");
+/D ZEND_WIN32_FORCE_INLINE /GB /GF /D ZEND_DEBUG=0");
+ // if you have VS.Net /GS hardens the binary against buffer overruns
+ // ADD_FLAG("CFLAGS", "/GS");
}
if (PHP_ZTS == "yes") {
@@ -94,7 +96,7 @@
}
if (!FSO.FolderExists(PHP_PHP_BUILD)) {
- ERROR("Could not find the php_build dir; please specify it\r\n\
+ WARNING("Could not find the php_build dir; please specify it\r\n\
using the --with-php-build option to configure");
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php