helly Tue Jan 28 01:27:01 2003 EDT
Modified files:
/php4/ext/dba config.m4
Log:
- fix this: els is optional but may not be empty
Index: php4/ext/dba/config.m4
diff -u php4/ext/dba/config.m4:1.36 php4/ext/dba/config.m4:1.37
--- php4/ext/dba/config.m4:1.36 Mon Jan 27 19:10:05 2003
+++ php4/ext/dba/config.m4 Tue Jan 28 01:27:01 2003
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.36 2003/01/28 00:10:05 helly Exp $
+dnl $Id: config.m4,v 1.37 2003/01/28 06:27:01 helly Exp $
dnl
dnl Suppose we need FlatFile if no support or only CDB is used.
@@ -10,7 +10,8 @@
AC_DEFUN(PHP_TEMP_LDFLAGS,[
old_LDFLAGS=$LDFLAGS
- LDFLAGS="$1 $LDFLAGS"
+dnl LDFLAGS="$1 $LDFLAGS"
+ LDFLAGS="$1"
$2
LDFLAGS=$old_LDFLAGS
])
@@ -141,14 +142,14 @@
for LIB in $2; do
PHP_TEMP_LDFLAGS(-L$THIS_PREFIX/lib,[
AC_CHECK_LIB($LIB, $3, [
- AC_EGREP_CPP(yes,[
+ AC_EGREP_CPP(yes,[
#include "$THIS_INCLUDE"
- yes
+ yes
#endif
],[
THIS_LIBS=$LIB
break
- ],[ ])
+ ])
])
])
done
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php