[PHP-DOC] cvs: phpdoc / configure.in
by Nuno Lopes other posts by this author
Feb 13 2006 12:32PM messages near this date
[PHP-DOC] #36386 [Opn->Csd]: session_set_save_handler's arguments should be "callback" and not "string"
|
[PHP-DOC] cvs: phpdoc /en/reference/unicode/functions unicode-semantics.xml
nlopess Mon Feb 13 20:32:13 2006 UTC
Modified files:
/phpdoc configure.in
Log:
dont use php 4 sources as default
http://cvs.php.net/viewcvs.cgi/phpdoc/configure.in?r1=1.233&r2=1.234&diff_format=u
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.233 phpdoc/configure.in:1.234
--- phpdoc/configure.in:1.233 Tue Sep 6 10:52:54 2005
+++ phpdoc/configure.in Mon Feb 13 20:32:12 2006
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.233 2005/09/06 10:52:54 goba Exp $
+dnl $Id: configure.in,v 1.234 2006/02/13 20:32:12 nlopess Exp $
dnl autoconf initialisation
AC_INIT()
@@ -391,8 +391,9 @@
PHP_SOURCE=$withval
else
for PHP_SOURCE in - $srcdir/../php4 - $srcdir/../php-src
+ $srcdir/../php-src + $srcdir/../php5 + $srcdir/../php4
do
if test -d $PHP_SOURCE; then
break
@@ -401,8 +402,9 @@
fi
],[
for PHP_SOURCE in - $srcdir/../php4 - $srcdir/../php-src
+ $srcdir/../php-src + $srcdir/../php5 + $srcdir/../php4
do
if test -d $PHP_SOURCE; then
break
|