You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by ms...@apache.org on 2004/01/08 02:13:51 UTC

svn commit: rev 6100 - incubator/spamassassin/trunk/build

Author: mss
Date: Tue Jan  6 06:19:46 2004
New Revision: 6100

Modified:
   incubator/spamassassin/trunk/build/configure
Log:
Fixed a stupid bug which always enabled SSL on Windows.


Modified: incubator/spamassassin/trunk/build/configure
==============================================================================
--- incubator/spamassassin/trunk/build/configure	(original)
+++ incubator/spamassassin/trunk/build/configure	Tue Jan  6 06:19:46 2004
@@ -66,7 +66,7 @@
   );
 
   # Enable SSL only if requested.
-  unless ($args{'enable-ssl'}) {
+  if ($args{'enable-ssl'} and $args{'enable-ssl'} ne 'yes') {
     delete $env{SSLCFLAGS};
     delete $env{SSLLIBS};
   }