sniper          Fri Nov 18 10:07:45 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /php-src/ext/readline       config.m4 
  Log:
  - Make sure --with-readline is used only when --with-libedit is not used.
  
http://cvs.php.net/diff.php/php-src/ext/readline/config.m4?r1=1.25&r2=1.25.2.1&ty=u
Index: php-src/ext/readline/config.m4
diff -u php-src/ext/readline/config.m4:1.25 
php-src/ext/readline/config.m4:1.25.2.1
--- php-src/ext/readline/config.m4:1.25 Sun May 29 19:16:44 2005
+++ php-src/ext/readline/config.m4      Fri Nov 18 10:07:39 2005
@@ -1,12 +1,14 @@
 dnl
-dnl $Id: config.m4,v 1.25 2005/05/29 23:16:44 sniper Exp $
+dnl $Id: config.m4,v 1.25.2.1 2005/11/18 15:07:39 sniper Exp $
 dnl
 
 PHP_ARG_WITH(libedit,for libedit readline replacement, 
 [  --with-libedit[=DIR]    Include libedit readline replacement (CLI/CGI 
only)])
 
-PHP_ARG_WITH(readline,for readline support,
-[  --with-readline[=DIR]   Include readline support (CLI/CGI only)])
+if test "$PHP_LIBEDIT" = "no"; then
+  PHP_ARG_WITH(readline,for readline support,
+  [  --with-readline[=DIR]   Include readline support (CLI/CGI only)])
+fi
 
 if test "$PHP_READLINE" != "no"; then
   for i in $PHP_READLINE /usr/local /usr; do

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

Reply via email to