ID: 20457 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: Compile Failure Operating System: Solaris 8 PHP Version: 4.2.3 New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2002-11-16 11:45:38] [EMAIL PROTECTED] Inside the sections for apxs and apxs2 (on lines 3326 and 3722) of the configure script, it tries to set a variable named APACHE_VERSION with the results of expr: APACHE_VERSION=`expr $4 \* 1000000 + $5 \* 1000 + $6` This apparently assumes (prays?) that the user will have specified an Apache source directory after the first argument. Of course when I run: configure --with-apxs=/usr/local/apache2/bin/apxs ...as is recommended in the documentation, $4, $5, and $6 are set to 'usr', 'local', and 'apache2', which causes expr to fail. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20457&edit=1