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/07/06 17:32:19 UTC

svn commit: rev 22631 - in spamassassin/trunk: . spamc

Author: mss
Date: Tue Jul  6 08:32:18 2004
New Revision: 22631

Modified:
   spamassassin/trunk/Makefile.PL
   spamassassin/trunk/spamc/configure.pl
Log:
bug 3569: made ENABLE_SSL=yes actually work with spamc on nin-Windows systems


Modified: spamassassin/trunk/Makefile.PL
==============================================================================
--- spamassassin/trunk/Makefile.PL	(original)
+++ spamassassin/trunk/Makefile.PL	Tue Jul  6 08:32:18 2004
@@ -1080,7 +1080,7 @@
 LIBSPAMC_SRC    = spamc/libspamc.c spamc/utils.c
 
 $(SPAMC_MAKEFILE): $(SPAMC_MAKEFILE).in $(SPAMC_MAKEFILE).win
-	$(CONFIGURE) --prefix="$(I_PREFIX)" --sysconfdir="$(I_SYSCONFDIR)" --datadir="$(I_DATADIR)" --enable-ssl="$(ENABLE_SSL)"
+	$(CONFIGURE) --prefix="$(I_PREFIX)" --sysconfdir="$(I_CONFDIR)" --datadir="$(I_DATADIR)" --enable-ssl="$(ENABLE_SSL)"
 
 spamc_has_moved:
 	$(NOECHO) echo "***"

Modified: spamassassin/trunk/spamc/configure.pl
==============================================================================
--- spamassassin/trunk/spamc/configure.pl	(original)
+++ spamassassin/trunk/spamc/configure.pl	Tue Jul  6 08:32:18 2004
@@ -42,6 +42,7 @@
 foreach (@ARGV) {
   if (/^--([^=]+?)=["']?(.*?)["']?$/) {
     $args{$1} = $2;
+    push(@args, $_);
   }
   elsif (/^([^=]+?)=["']?(.*?)["']?$/) {
     $ENV{$1} = $2;