You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by qu...@apache.org on 2005/05/09 10:21:53 UTC

svn commit: r169252 - in /spamassassin/trunk: lib/Mail/SpamAssassin/Util/DependencyInfo.pm t/spamd_allow_user_rules.t

Author: quinlan
Date: Mon May  9 01:21:52 2005
New Revision: 169252

URL: http://svn.apache.org/viewcvs?rev=169252&view=rev
Log:
remove Storable requirements

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm
    spamassassin/trunk/t/spamd_allow_user_rules.t

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm?rev=169252&r1=169251&r2=169252&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm Mon May  9 01:21:52 2005
@@ -72,22 +72,6 @@
   - version 0.46 or higher on Windows systems',
 },
 {
-  'module' => 'Storable',
-  'version' => '2.12',
-  'desc' => 'This is a required module if you use spamd and allow user
-  configurations to be used (ie: you don\'t use -x, -u, -q/--sql-config,
-  -Q/--setuid-with-sql, --ldap-config, or --setuid-with-ldap).  Third
-  party utilities may also require this module for the same
-  functionality.  Storable is used to shift configuration when a spamd
-  process switches between users. 
-
-  If you plan to run SpamAssassin on a multiprocessor Linux machine, or one
-  with a hyperthreaded CPU like a Pentium 4, it is strongly recommended that
-  you ensure version 2.12 (or newer) is installed.  This fixes a bug that
-  causes hangs under heavy load with that hardware configuration.',
-
-},
-{
   module => 'Net::SMTP',
   alt_name => 'libnet',
   version => '0.00',

Modified: spamassassin/trunk/t/spamd_allow_user_rules.t
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/t/spamd_allow_user_rules.t?rev=169252&r1=169251&r2=169252&view=diff
==============================================================================
--- spamassassin/trunk/t/spamd_allow_user_rules.t (original)
+++ spamassassin/trunk/t/spamd_allow_user_rules.t Mon May  9 01:21:52 2005
@@ -4,18 +4,13 @@
 use SATest; sa_t_init("spamd_allow_user_rules");
 use Test;
 
-use constant HAS_STORABLE => eval { require Storable; };
-
 BEGIN { 
 
-  plan tests => ($SKIP_SPAMD_TESTS || !HAS_STORABLE ? 0 : 5)
+  plan tests => ($SKIP_SPAMD_TESTS ? 0 : 5)
 
 };
 
 exit if $SKIP_SPAMD_TESTS;
-
-exit if !HAS_STORABLE;
-
 
 # ---------------------------------------------------------------------------