wez             Thu May 13 08:14:56 2004 EDT

  Modified files:              
    /php-src/win32/build        config.w32 
  Log:
  Add --enable-memory-limit configure option (defaults to off)
  
  
http://cvs.php.net/diff.php/php-src/win32/build/config.w32?r1=1.25&r2=1.26&ty=u
Index: php-src/win32/build/config.w32
diff -u php-src/win32/build/config.w32:1.25 php-src/win32/build/config.w32:1.26
--- php-src/win32/build/config.w32:1.25 Thu Feb 12 06:55:16 2004
+++ php-src/win32/build/config.w32      Thu May 13 08:14:56 2004
@@ -1,5 +1,5 @@
 // vim:ft=javascript
-// $Id: config.w32,v 1.25 2004/02/12 11:55:16 wez Exp $
+// $Id: config.w32,v 1.26 2004/05/13 12:14:56 wez Exp $
 // "Master" config file; think of it as a configure.in
 // equivalent.
 
@@ -214,6 +214,10 @@
 AC_DEFINE('HAVE_GAI_STRERROR', main_network_has_ipv6);
 AC_DEFINE('HAVE_IPV6', main_network_has_ipv6);
 
+ARG_ENABLE("memory-limit", "Enable memory limit checking code", "no");
+
+AC_DEFINE('MEMORY_LIMIT', PHP_MEMORY_LIMIT == "yes" ? 1 : 0);
+
 /* For snapshot builders, where can we find the additional
  * files that make up the snapshot template? */
 ARG_WITH("snapshot-template", "Path to snapshot builder template dir", "no");

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to