diff options
author | xtraeme <xtraeme> | 2004-10-22 05:43:28 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2004-10-22 05:43:28 +0000 |
commit | 12d3f148e268d879994a0bd59386908d6a6eba0b (patch) | |
tree | 41eeaea075a031107457cf3001c7c66af64169ad /mail/dspam/patches | |
parent | 0e4c1fc0912a87d165d9ddc29ec089f8cd28b2bd (diff) | |
download | pkgsrc-12d3f148e268d879994a0bd59386908d6a6eba0b.tar.gz |
Update mail/dspam to 3.2.0 (latest stable version).
Version 3.2 adds many significant enhancements, these include the
introduction of a dspam.conf master configuration, an aesthetically
redesigned web interface, support for SQLite, support for Windows, and
and many other enhancements.
More information:
http://www.nuclearelephant.com/projects/dspam/text/RELEASE-3.2.0.txt
pkgsrc changes:
* Default storage driver has been changed to SQLite, to sync with dspam's
defaults.
* Deprecated options has been removed totally, now you'll have to specify
them via PKG_OPTIONS.dspam=foo bar baz.
Diffstat (limited to 'mail/dspam/patches')
-rw-r--r-- | mail/dspam/patches/patch-aa | 37 |
1 files changed, 11 insertions, 26 deletions
diff --git a/mail/dspam/patches/patch-aa b/mail/dspam/patches/patch-aa index 24e6a3ccdd7..c648e3949a4 100644 --- a/mail/dspam/patches/patch-aa +++ b/mail/dspam/patches/patch-aa @@ -1,28 +1,13 @@ -$NetBSD: patch-aa,v 1.1 2004/08/09 20:14:21 jlam Exp $ +$NetBSD: patch-aa,v 1.2 2004/10/22 05:43:29 xtraeme Exp $ ---- util.c.orig Mon Jun 7 17:27:49 2004 -+++ util.c -@@ -331,11 +331,13 @@ _ds_prepare_path_for (const char *filena - file_buffer_start = file; - path[0] = 0; +--- Makefile.in.orig 2004-10-22 07:27:16.000000000 +0200 ++++ Makefile.in 2004-10-22 07:27:35.000000000 +0200 +@@ -261,7 +261,7 @@ + pkgconfigdir = $(libdir)/pkgconfig + pkgconfig_DATA = dspam.pc + etcdir = $(sysconfdir) +-etc_SCRIPTS = dspam_conf ++etc_SCRIPTS = -+ if (file[0] == '/') -+ strlcat (path, "/", sizeof (path)); - dir = strsep (&file, "/"); -+ - while (dir != NULL) - { - strlcat (path, dir, sizeof (path)); -- strlcat (path, "/", sizeof (path)); - dir = strsep (&file, "/"); - - if (dir != NULL && stat (path, &s)) -@@ -350,6 +352,8 @@ _ds_prepare_path_for (const char *filena - return EFILE; - } - } -+ if (dir != NULL) -+ strlcat (path, "/", sizeof (path)); - } - free (file_buffer_start); - return 0; + # Defaults from dspam.conf + EXTRA_DIST = autogen.sh RELEASE.NOTES CHANGELOG LICENSE example.c \ |