diff options
author | foobar <sniper@php.net> | 2001-10-30 23:27:27 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-10-30 23:27:27 +0000 |
commit | 8ea8ebd2de16fbe289cf86e790648cfa50f4c432 (patch) | |
tree | e087f4df1e20b4850cf36034f83cd9776473305e | |
parent | 43825a76bb9be14c14e6df18f0f60a7735ef33d7 (diff) | |
download | php-git-8ea8ebd2de16fbe289cf86e790648cfa50f4c432.tar.gz |
ws fix
-rw-r--r-- | sapi/servlet/config.m4 | 16 |
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 |