There's something else wrong if $SED isn't defined,
    as it has been around since PHP 4.3.something.

    --Jani

On Sun, 4 Dec 2005, Wez Furlong wrote:


wez             Sun Dec  4 13:33:26 2005 EDT

 Modified files:              (Branch: PHP_5_1)
   /php-src/ext/pdo_mysql       config.m4
 Log:
 Fix PECL #6138


http://cvs.php.net/diff.php/php-src/ext/pdo_mysql/config.m4?r1=1.25.2.5&r2=1.25.2.6&ty=u
Index: php-src/ext/pdo_mysql/config.m4
diff -u php-src/ext/pdo_mysql/config.m4:1.25.2.5 
php-src/ext/pdo_mysql/config.m4:1.25.2.6
--- php-src/ext/pdo_mysql/config.m4:1.25.2.5    Tue Nov 29 12:31:13 2005
+++ php-src/ext/pdo_mysql/config.m4     Sun Dec  4 13:33:26 2005
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.25.2.5 2005/11/29 17:31:13 sniper Exp $
+dnl $Id: config.m4,v 1.25.2.6 2005/12/04 18:33:26 wez Exp $
dnl

if test "$PHP_PDO" != "no"; then
@@ -50,6 +50,9 @@

  if test -n "$PDO_MYSQL_CONFIG" && test -x "$PDO_MYSQL_CONFIG" ; then
    AC_MSG_RESULT($PDO_MYSQL_CONFIG)
+    if test "x$SED" = "x"; then
+      AC_PATH_PROG(SED, sed)
+    fi
    PDO_MYSQL_INCLUDE=`$PDO_MYSQL_CONFIG --cflags | $SED -e "s/'//g"`
    PDO_MYSQL_LIBS=`$PDO_MYSQL_CONFIG --libs | $SED -e "s/'//g"`
    PDO_MYSQL_SOCKET=`$PDO_MYSQL_CONFIG --socket`



--
Give me your money at @ <http://pecl.php.net/wishlist.php/sniper>
Donating money may make me happier and friendlier for a limited period!
Death to all 4 letter abbreviations starting with P!

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

Reply via email to