head 1.6; access; symbols pkgsrc-2013Q2:1.6.0.8 pkgsrc-2013Q2-base:1.6 pkgsrc-2012Q4:1.6.0.6 pkgsrc-2012Q4-base:1.6 pkgsrc-2011Q4:1.6.0.4 pkgsrc-2011Q4-base:1.6 pkgsrc-2011Q2:1.6.0.2 pkgsrc-2011Q2-base:1.6 pkgsrc-2009Q4:1.4.0.2 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.2.0.12 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.10 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.8 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.6 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.4 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.2 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.1.0.6 pkgsrc-2007Q3-base:1.1 pkgsrc-2007Q2:1.1.0.4 pkgsrc-2007Q2-base:1.1 pkgsrc-2007Q1:1.1.0.2 pkgsrc-2007Q1-base:1.1; locks; strict; comment @# @; 1.6 date 2010.04.06.06.31.42; author tron; state dead; branches; next 1.5; 1.5 date 2010.04.05.23.00.42; author tron; state Exp; branches; next 1.4; 1.4 date 2009.04.02.18.34.17; author tron; state dead; branches; next 1.3; 1.3 date 2009.03.16.10.15.23; author tron; state Exp; branches; next 1.2; 1.2 date 2007.11.21.20.29.47; author gdt; state dead; branches; next 1.1; 1.1 date 2007.03.07.17.33.51; author gdt; state Exp; branches; next ; desc @@ 1.6 log @Revert last change. GCC was complaing about an undefined label and not about an unused one. PR toolchain/43123 seems to be caused by a bug in flex(1) under NetBSD-current and not by problem with this package. @ text @$NetBSD: patch-ab,v 1.5 2010/04/05 23:00:42 tron Exp $ Fix build with "flex" under NetBSD 5.99.* and newer. --- configure.orig 2009-08-14 01:31:15.000000000 +0100 +++ configure 2010-04-05 23:56:44.000000000 +0100 @@@@ -3439,7 +3439,7 @@@@ { $as_echo "$as_me:$LINENO: checking if compiler accepts -Wall" >&5 $as_echo_n "checking if compiler accepts -Wall... " >&6; } SAVEDCFLAGS=$CFLAGS -CFLAGS=$CFLAGS" -Wall" +CFLAGS=$CFLAGS" -Wall -Wno-unused-label" wall="no" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ @ 1.5 log @Stop GCC from complaining about unused labels in C sources. This should fix the build problem reported by Hisashi T Fujinaka in PR pkg/43123. @ text @d1 1 a1 1 $NetBSD$ @ 1.4 log @Update "milter-greylist" package to version 4.2. Changes since 4.2rc1: - Make sure dump is really on disk even with a buggy ext4fs - Build with OpenLDAP but not CURL (Matthias Scheler) Approved by Alistair Crooks. @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.3 2009/03/16 10:15:23 tron Exp $ d3 13 a15 10 --- prop.c.orig 2008-08-03 10:48:44.000000000 +0100 +++ prop.c 2009-03-16 09:08:52.000000000 +0000 @@@@ -62,7 +62,6 @@@@ #include "spf.h" #include "acl.h" #include "conf.h" -#include "urlcheck.h" #include "sync.h" #include "prop.h" @ 1.3 log @Update "milter-greylist" package to version 4.2rc1. Changes since version 4.0.1: - SpamAssassassin support - Native LDAP support via OpenLDAP (off by default in pkgsrc) - DKIM support (not supported in pkgsrc) - P0f support - A lot of bug fixes pkgsrc related changes: - Optional "curl" support for external URL checking @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Update to 4.0. Removed patches were merged upstream. From the changelog, this seems to be many bugfixes and better RBL support. @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.1 2007/03/07 17:33:51 gdt Exp $ d3 9 a11 7 --- autowhite.c.orig 2006-09-04 18:05:58.000000000 -0400 +++ autowhite.c @@@@ -385,6 +385,7 @@@@ autowhite_textdump(stream) char textdate[DATELEN + 1]; char textaddr[IPADDRSTRLEN]; struct tm tm; + time_t ti; a12 12 fprintf(stream, "\n\n#\n# Auto-whitelisted tuples\n#\n"); fprintf(stream, "# Sender IP\t%s\t%s\tExpire\n", @@@@ -401,7 +402,8 @@@@ autowhite_textdump(stream) textaddr, aw->a_from, aw->a_rcpt, (long)aw->a_tv.tv_sec); } else { - localtime_r((time_t *)&aw->a_tv.tv_sec, &tm); + ti = aw->a_tv.tv_sec; /* types do not match */ + localtime_r(&ti, &tm); strftime(textdate, DATELEN, "%Y-%m-%d %T", &tm); fprintf(stream, @ 1.1 log @Don't assume time_t and long are the same (on sparc64, they aren't). Fixes ascii timestamps in greylist.db, but as this is solely for the benefit of humans looking at the file functionality is unchanged. @ text @d1 1 a1 1 $NetBSD$ @