wez             Thu Jan 13 12:11:00 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src    acinclude.m4 
  Log:
  MFH the extension dep macro (which is a NOP)
  so that pecl extensions with deps can build against head and 5.0.x
  
  
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.271.2.10&r2=1.271.2.11&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.271.2.10 php-src/acinclude.m4:1.271.2.11
--- php-src/acinclude.m4:1.271.2.10     Fri Jan  7 01:19:54 2005
+++ php-src/acinclude.m4        Thu Jan 13 12:10:59 2005
@@ -1,4 +1,4 @@
-dnl $Id: acinclude.m4,v 1.271.2.10 2005/01/07 06:19:54 sniper Exp $ -*- 
autoconf -*-
+dnl $Id: acinclude.m4,v 1.271.2.11 2005/01/13 17:10:59 wez Exp $ -*- autoconf 
-*-
 dnl
 dnl This file contains local autoconf functions.
 
@@ -2014,6 +2014,16 @@
   ])
 ])
 
+dnl This macro is currently a placeholder in the config.m4 file
+dnl it is scanned by genif.sh when it builds the internal functions
+dnl list, so that modules can be init'd in the correct order
+dnl $1 = name of extension, $2 = extension upon which it depends
+dnl $3 = optional: if true, it's ok for $2 to have not been configured
+dnl default is false and should halt the build.
+dnl See ADD_EXTENSION_DEP in win32 build
+AC_DEFUN([PHP_ADD_EXTENSION_DEP], [])
+
+
 dnl
 dnl PHP_C_BIGENDIAN
 dnl Replacement macro for AC_C_BIGENDIAN

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

Reply via email to