Commit:    860b3ffe75a95f18ff3bf570c49c5004cb70cab1
Author:    Johannes Schlüter <johan...@php.net>         Sun, 22 Jul 2012 
23:28:32 +0200
Parents:   254d299d0768562d60a12af0b05678ec7bff94cb
Branches:  PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=860b3ffe75a95f18ff3bf570c49c5004cb70cab1

Log:
Fix Bug #62612 readline extension compilation fails

Bugs:
https://bugs.php.net/62612

Changed paths:
  M  NEWS
  M  sapi/cli/config.m4


Diff:
diff --git a/NEWS b/NEWS
index 8ae6931..883d910 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,10 @@ PHP                                                          
              NEWS
 - MySQLnd:
   . Fixed bug #62594 (segfault in mysqlnd_res_meta::set_mode). (Laruence)
 
+- readline:
+  . Fixed bug #62612 (readline extension compilation fails with
+    sapi/cli/cli.h: No such file). (Johannes)
+
 - Reflection:
   . Implemented FR #61602 (Allow access to name of constant used as default 
     value). (reeze....@gmail.com)
diff --git a/sapi/cli/config.m4 b/sapi/cli/config.m4
index 77fc5e9..cdfa1f7 100644
--- a/sapi/cli/config.m4
+++ b/sapi/cli/config.m4
@@ -44,5 +44,7 @@ if test "$PHP_CLI" != "no"; then
   PHP_SUBST(BUILD_CLI)
 
   PHP_OUTPUT(sapi/cli/php.1)
+
+  PHP_INSTALL_HEADERS([sapi/cli/cli.h])
 fi
 AC_MSG_RESULT($PHP_CLI)


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

Reply via email to