components/php-5_3/php-sapi/patches/015_php_sapi_apache2handler_config.m4.patch
changeset 846 fe258446a1ae
equal deleted inserted replaced
845:f38158deaa77 846:fe258446a1ae
       
     1 --- php-5.3.10/sapi/apache2handler/config.m4_orig	Tue Mar 11 15:47:39 2008
       
     2 +++ php-5.3.10/sapi/apache2handler/config.m4	Wed Feb  8 11:25:25 2012
       
     3 @@ -6,6 +6,23 @@
       
     4  [  --with-apxs2[=FILE]     Build shared Apache 2.0 Handler module. FILE is the optional
       
     5                            pathname to the Apache apxs tool [apxs]], no, no)
       
     6  
       
     7 +dnl PHP_AP2_EXTRACT_VERSION(/path/httpd)
       
     8 +dnl
       
     9 +dnl This macro is used to get a comparable
       
    10 +dnl version for apache/2.
       
    11 +dnl
       
    12 +AC_DEFUN([PHP_AP2_EXTRACT_VERSION],[
       
    13 +  ac_output=`env LD_LIBRARY_PATH=$APXS_LIBDIR $1 -v 2>&1 | grep version`
       
    14 +  ac_IFS=$IFS
       
    15 +IFS="- /.
       
    16 +"
       
    17 +  set $ac_output
       
    18 +  IFS=$ac_IFS
       
    19 +
       
    20 +  APACHE_VERSION=`expr [$]4 \* 1000000 + [$]5 \* 1000 + [$]6`
       
    21 +])
       
    22 +
       
    23 +dnl
       
    24  AC_MSG_CHECKING([for Apache 2.0 handler-module support via DSO through APXS])
       
    25  
       
    26  if test "$PHP_APXS2" != "no"; then
       
    27 @@ -36,6 +53,7 @@
       
    28  
       
    29    APXS_INCLUDEDIR=`$APXS -q INCLUDEDIR`
       
    30    APXS_BINDIR=`$APXS -q BINDIR`
       
    31 +  APXS_LIBDIR=`$APXS -q LIBDIR`
       
    32    APXS_HTTPD=`$APXS -q SBINDIR`/`$APXS -q TARGET`
       
    33    APXS_CFLAGS=`$APXS -q CFLAGS`
       
    34    APXS_MPM=`$APXS -q MPM_NAME`
       
    35 @@ -61,6 +79,7 @@
       
    36  
       
    37    # Test that we're trying to configure with apache 2.x
       
    38    PHP_AP_EXTRACT_VERSION($APXS_HTTPD)
       
    39 +  PHP_AP2_EXTRACT_VERSION($APXS_HTTPD)
       
    40    if test "$APACHE_VERSION" -le 2000000; then
       
    41      AC_MSG_ERROR([You have enabled Apache 2 support while your server is Apache 1.3.  Please use the appropiate switch --with-apxs (without the 2)])
       
    42    elif test "$APACHE_VERSION" -lt 2000044; then