]> git.pld-linux.org Git - packages/spamassassin.git/commitdiff
- add uninitialized_value.patch auto/th/spamassassin-3_3_1-5 auto/ti/spamassassin-3_3_1-5
authorareq <areq@pld-linux.org>
Fri, 11 Feb 2011 22:22:26 +0000 (22:22 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    spamassassin-uninitialized_value.patch -> 1.1
    spamassassin.spec -> 1.163

spamassassin-uninitialized_value.patch [new file with mode: 0644]
spamassassin.spec

diff --git a/spamassassin-uninitialized_value.patch b/spamassassin-uninitialized_value.patch
new file mode 100644 (file)
index 0000000..f8c4015
--- /dev/null
@@ -0,0 +1,18 @@
+http://svn.apache.org/viewvc/spamassassin/trunk/spamd/spamd.raw?r1=950076&r2=950216&pathrev=950216
+https://bugs.gentoo.org/show_bug.cgi?id=342591
+--- Mail-SpamAssassin-3.3.1/spamd/spamd.raw    2010-03-16 10:49:25.000000000 -0400
++++ Mail-SpamAssassin-3.3.1/spamd/spamd.raw    2010-10-25 16:21:02.000000000 -0400
+@@ -443,10 +443,12 @@
+ #  socket of 'none' means as much as --syslog=null. Sounds complicated? It is.
+ #  But it works.
+ # )
+-my $log_socket = lc($opt{'syslog-socket'});
++my $log_socket = $opt{'syslog-socket'};
+ if (!defined $log_socket || $log_socket eq '') {
+   $log_socket = am_running_on_windows() ? 'none' : 'unix';
++} else {
++    $log_socket = lc $log_socket;
+ }
+ # This is the default log file; it can be changed on the command line
index 807d289a0cf697ef760e1e7f67b589b345c8095e..7b247ffa2eccb0c5061af23615595138276099e0 100644 (file)
@@ -13,7 +13,7 @@ Summary:      A spam filter for email which can be invoked from mail delivery agents
 Summary(pl.UTF-8):     Filtr antyspamowy, przeznaczony dla programów dostarczających pocztę (MDA)
 Name:          spamassassin
 Version:       3.3.1
-Release:       4
+Release:       5
 License:       Apache v2.0
 Group:         Applications/Mail
 Source0:       http://ftp.tpnet.pl/vol/d1/apache/spamassassin/source/%{pdir}-%{pnam}-%{version}.tar.bz2
@@ -25,6 +25,7 @@ Source4:      %{name}-spamc.rc
 Source5:       sa-update.sh
 Source6:       sa-update.cron
 Patch0:                %{name}-perl_5_12.patch
+Patch1:                %{name}-uninitialized_value.patch
 URL:           http://spamassassin.apache.org/
 BuildRequires: openssl-devel >= 1.0.0
 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.16
@@ -255,6 +256,7 @@ aplikacji do czytania poczty.
 %prep
 %setup -q -n %{pdir}-%{pnam}-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 # for spamc/configure
This page took 0.047837 seconds and 4 git commands to generate.