tony2001 Wed Jan 31 21:29:53 2007 UTC Modified files: /php-src acinclude.m4 Log: use correct comment marker (dnl, not #) add comment regarding AC_DECL_YYTEXT and the annoying warning (just in case I'm not the only one who's annoyed by it) http://cvs.php.net/viewvc.cgi/php-src/acinclude.m4?r1=1.360&r2=1.361&diff_format=u Index: php-src/acinclude.m4 diff -u php-src/acinclude.m4:1.360 php-src/acinclude.m4:1.361 --- php-src/acinclude.m4:1.360 Mon Jan 15 14:07:18 2007 +++ php-src/acinclude.m4 Wed Jan 31 21:29:53 2007 @@ -1,5 +1,5 @@ dnl -dnl $Id: acinclude.m4,v 1.360 2007/01/15 14:07:18 tony2001 Exp $ +dnl $Id: acinclude.m4,v 1.361 2007/01/31 21:29:53 tony2001 Exp $ dnl dnl This file contains local autoconf functions. dnl @@ -2015,11 +2015,14 @@ dnl Search for (f)lex and check it's version dnl AC_DEFUN([PHP_PROG_LEX], [ - # we only support certain flex versions +dnl we only support certain flex versions flex_version_list="2.5.4" AC_PROG_LEX if test -n "$LEX"; then +dnl AC_DECL_YYTEXT is obsolete since autoconf 2.50 and merged into AC_PROG_LEX +dnl this is what causes that annoying "PHP_PROG_LEX is expanded from" warning with autoconf 2.50+ +dnl it should be removed once we drop support of autoconf 2.13 (if ever) AC_DECL_YYTEXT : fi
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php