php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #58940 AC_MSG_NOTICE() is undefined in autoconf 2.13
Submitted: 2009-11-08 02:54 UTC Modified: 2009-11-10 01:10 UTC
From: pierrick@php.net Assigned: iekpo (profile)
Status: Closed Package: solr (PECL)
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: pierrick@php.net
New email:
PHP Version: OS:

 

 [2009-11-08 02:54 UTC] pierrick@php.net
Description:
------------
AC_MSG_NOTICE() is undefined in autoconf 2.13, which is the recommended version to use with PHP.

You should use AC_MSG_RESULT (or AC_MSG_CHECKING) instead.


Reproduce code:
---------------
Index: config.m4
===================================================================
--- config.m4	(r?vision 290392)
+++ config.m4	(copie de travail)
@@ -16,7 +16,7 @@
 
 if test -r $PHP_CURL/include/curl/easy.h; then
 	CURL_DIR=$PHP_CURL
-	AC_MSG_NOTICE(curl headers found in $PHP_CURL)
+	AC_MSG_RESULT(curl headers found in $PHP_CURL)
 else
 	AC_MSG_CHECKING(for cURL in default path)
 	for i in /usr/local /usr; do


Actual result:
--------------
Configuring for:
PHP Api Version:         20090626
Zend Module Api No:      20090626
Zend Extension Api No:   220090626
autoconf: Undefined macros:
***BUG in Autoconf--please report*** AC_MSG_NOTICE


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-11-10 01:10 UTC] iekpo@php.net
This bug has been fixed in CVS.

In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pecl.php.net.

In case this was a pecl.php.net website problem, the change will show
up on the website in short time.
 
Thank you for the report, and for helping us make PECL better.

This issue has been resolved in SVN revision 290465
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 18:01:28 2024 UTC