| Summary: | dev-lang/php-5.1.6-r6 - phpinfo() does not report correct configure command | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Laurent MONIN <gentoo> |
| Component: | Current packages | Assignee: | PHP Bugs <php-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | gentuu |
| Priority: | High | ||
| Version: | 2006.0 | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Laurent MONIN
2006-11-27 01:28:37 UTC
Not here. Reopen with emerge -pv php output. Here is emerge -pv php output: [ebuild R ] dev-lang/php-5.1.6-r6 USE="apache2 berkdb bzip2 cli crypt ctype exif fastbuild force-cgi-redirect ftp gd gdbm gmp iconv ldap memlimit mysql ncurses nls pcre posix readline reflection session simplexml soap sockets spell spl ssl tokenizer truetype xml xsl zlib -adabas -apache -bcmath -birdstep -calendar -cdb -cgi -cjk -concurrentmodphp -curl -curlwrappers -db2 -dbase -dbmaker -debug -discard-path -doc -empress -empress-bcs -esoob -fdftk -filepro -firebird -flatfile -frontbase -gd-external -hardenedphp -hash -hyperwave-api -imap -informix -inifile -interbase -iodbc -ipv6 -java-external -kerberos -libedit -mcve -mhash -ming -msql -mssql -mysqli -oci8 -oci8-instant-client -odbc -pcntl -pdo -pdo-external -pic -postgres -qdbm -recode -sapdb -sasl -sharedext -sharedmem -snmp -solid -sqlite -sybase -sybase-ct -sysvipc -threads -tidy -unicode -vm-goto -vm-switch -wddx -xmlreader -xmlrpc -xmlwriter -xpm -yaz -zip" 0 kB (In reply to comment #0) > phpinfo() reports: > > > Configure Command './configure' 'dummy' 'grep' 'ggrep' > there is a simple (but possible a little dirty) fix (patch): -----------------CUT HERE------------- --- configure.in.orig 2006-11-28 22:14:49.000000000 -0800 +++ configure.in 2006-11-28 22:07:04.000000000 -0800 @@ -31,7 +31,7 @@ AC_INIT(README.CVS-RULES) PHP_CONFIG_NICE(config.nice) -for arg in $0 "$@"; do +for arg in $0 "$ac_configure_args"; do CONFIGURE_COMMAND="$CONFIGURE_COMMAND '$arg'" done -----------------CUT HERE------------- Fixed in dev-lang/php-5.1.6-r11. Best regards, CHTEKK. |