ID:               17233
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Closed
 Bug Type:         Apache2 related
 Operating System: Solaris
 PHP Version:      4.2.1
 New Comment:

This bug has been fixed in CVS. You can grab a snapshot of the
CVS version 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.
Thank you for the report, and for helping us make PHP better.

Huh, what awk do you have?  gawk doesn't seem to care about the -dev (I
get 2000037 as expected, even with the -dev).  Oh well, the patch
doesn't hurt anything either, so I went ahead an applied it.  Done for
apache 1.3 as well, btw.  Thanks!


Previous Comments:
------------------------------------------------------------------------

[2002-05-14 21:52:13] [EMAIL PROTECTED]


sapi/apache2filter/config.m4 fails to recognize Apache 2.x.x-dev (CVS)
version strings and thus the test for Apache version gt 2.0.0 fails.

Attached is a patch to compensate for "-dev" being in the version
string.

*** config.m4.orig      Tue May 14 21:44:07 2002
--- config.m4   Tue May 14 21:42:52 2002
***************
*** 34,40 ****
    APXS_HTTPD=`$APXS -q SBINDIR`/`$APXS -q TARGET`

    # Test that we're trying to configure with apache 2.x
!   APACHE_VERSION=`$APXS_HTTPD -v | head -1 | cut -f3 -d' ' | cut -f2
-d'/' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000
+ $3;}'`
    if test "$APACHE_VERSION" -le 2000000; then
      AC_MSG_ERROR([Use --with-apxs with Apache 1.3.x!])
    elif test "$APACHE_VERSION" -lt 2000035; then
--- 34,40 ----
    APXS_HTTPD=`$APXS -q SBINDIR`/`$APXS -q TARGET`

    # Test that we're trying to configure with apache 2.x
!   APACHE_VERSION=`$APXS_HTTPD -v | head -1 | cut -f3 -d' ' | cut -f2
-d'/' | cut -f1 -d'-' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 *
1000 + $2) * 1000 + $3;}'`
    if test "$APACHE_VERSION" -le 2000000; then
      AC_MSG_ERROR([Use --with-apxs with Apache 1.3.x!])
    elif test "$APACHE_VERSION" -lt 2000035; then


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=17233&edit=1

Reply via email to