Author: mturk
Date: Sat Nov 25 05:17:52 2006
New Revision: 479124
URL: http://svn.apache.org/viewvc?view=rev&rev=479124
Log:
Use true/false instead string compare
Modified:
tomcat/connectors/trunk/jni/native/configure.in
Modified: tomcat/connectors/trunk/jni/native/configure.in
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/native/configure.in?view=diff&rev=479124&r1=479123&r2=479124
==============================================================================
--- tomcat/connectors/trunk/jni/native/configure.in (original)
+++ tomcat/connectors/trunk/jni/native/configure.in Sat Nov 25 05:17:52 2006
@@ -119,15 +119,16 @@
dnl Detect openssl toolkit installation
dnl
-use_openssl=yes
+use_openssl=true;
+
AC_ARG_ENABLE(openssl,
[ --disable-openssl avoid using OpenSSL toolkit],
[
- use_openssl=no
- AC_MSG_RESULT([...Disabling SSL support])
+ use_openssl=false;
+ AC_MSG_RESULT([Disabling SSL support...])
])
-if test "x$use_openssl" = "xyes"; then
+if test $use_openssl ; then
TCN_CHECK_SSL_TOOLKIT
fi
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]