]> granicus.if.org Git - php/commitdiff
ws fix
authorfoobar <sniper@php.net>
Tue, 30 Oct 2001 23:27:27 +0000 (23:27 +0000)
committerfoobar <sniper@php.net>
Tue, 30 Oct 2001 23:27:27 +0000 (23:27 +0000)
sapi/servlet/config.m4

index fc05faf49ce3513ba17f666493157a93de76bbf5..d2678af0a25d6ebe6dbf14073fa916133ea9372f 100644 (file)
@@ -3,9 +3,9 @@
 
 AC_MSG_CHECKING(for Servlet support)
 AC_ARG_WITH(servlet,
-[  --with-servlet[=DIR]          Include servlet support. DIR is the base install
-                         directory for the JSDK.  This SAPI prereqs the
-                         java extension must be built as a shared dl.],
+[  --with-servlet[=DIR]    Include servlet support. DIR is the base install
+                          directory for the JSDK.  This SAPI prereqs the
+                          java extension must be built as a shared dl.],
 [
   if test "$withval" != "no"; then
 
@@ -13,20 +13,20 @@ AC_ARG_WITH(servlet,
       SERVLET_CLASSPATH=.
     else
       if test -f $withval/lib/servlet.jar; then
-       SERVLET_CLASSPATH=$withval/lib/servlet.jar
+        SERVLET_CLASSPATH=$withval/lib/servlet.jar
       fi
 
       if test -f $withval/lib/jsdk.jar; then
-       SERVLET_CLASSPATH=$withval/lib/jsdk.jar
+        SERVLET_CLASSPATH=$withval/lib/jsdk.jar
       fi
 
       if test -d $withval/javax; then
-       SERVLET_CLASSPATH=$withval
+        SERVLET_CLASSPATH=$withval
       fi
 
       if test -z "$SERVLET_CLASSPATH"; then
-       AC_MSG_RESULT(no)
-       AC_MSG_ERROR(unable to find servlet libraries)
+        AC_MSG_RESULT(no)
+        AC_MSG_ERROR(unable to find servlet libraries)
       fi
     fi