summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sapi/servlet/config.m416
1 files changed, 8 insertions, 8 deletions
diff --git a/sapi/servlet/config.m4 b/sapi/servlet/config.m4
index fc05faf49c..d2678af0a2 100644
--- a/sapi/servlet/config.m4
+++ b/sapi/servlet/config.m4
@@ -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