sniper          Sun Feb 23 04:37:13 2003 EDT

  Modified files:              
    /php4/sapi/cgi      config9.m4 
  Log:
  MFB: Fixed bug #22356 (Do not add empty -I flags).
  
Index: php4/sapi/cgi/config9.m4
diff -u php4/sapi/cgi/config9.m4:1.5 php4/sapi/cgi/config9.m4:1.6
--- php4/sapi/cgi/config9.m4:1.5        Thu Dec 19 12:02:40 2002
+++ php4/sapi/cgi/config9.m4    Sun Feb 23 04:37:13 2003
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config9.m4,v 1.5 2002/12/19 17:02:40 edink Exp $
+dnl $Id: config9.m4,v 1.6 2003/02/23 09:37:13 sniper Exp $
 dnl
 
 AC_ARG_ENABLE(cgi,
@@ -135,7 +135,7 @@
     if test "$PHP_ENABLE_FASTCGI" = "yes"; then
       PHP_FASTCGI=1
       PHP_FCGI_FILES="libfcgi/fcgi_stdio.c libfcgi/fcgiapp.c libfcgi/os_unix.c"
-      PHP_FCGI_INCLUDE="$PHP_LIBFCGI_DIR/include"
+      PHP_FCGI_INCLUDE="-I$PHP_LIBFCGI_DIR/include"
       PHP_FCGI_STATIC=1
     else
       PHP_FASTCGI=0
@@ -148,7 +148,7 @@
     AC_MSG_RESULT($PHP_ENABLE_FASTCGI)
 
     INSTALL_IT="\$(INSTALL) -m 0755 \$(SAPI_CGI_PATH) \$(INSTALL_ROOT)\$(bindir)/php"
-    PHP_SELECT_SAPI(cgi, program, $PHP_FCGI_FILES cgi_main.c getopt.c, 
-I$PHP_FCGI_INCLUDE,'$(SAPI_CGI_PATH)')
+    PHP_SELECT_SAPI(cgi, program, $PHP_FCGI_FILES cgi_main.c getopt.c, 
$PHP_FCGI_INCLUDE, '$(SAPI_CGI_PATH)')
 
     case $host_alias in
       *darwin*)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to