head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.44 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.42 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.40 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.38 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.36 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.34 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.32 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.30 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.28 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.26 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.24 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.22 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.20 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.18 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.16 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.14 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.12 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.10 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.3.0.8 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.6 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.4 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.2 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.2.0.18 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.16 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.14 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.12 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.2.0.10 pkgsrc-2003Q4-base:1.2 netbsd-1-6-1:1.2.0.6 netbsd-1-6-1-base:1.2 netbsd-1-6:1.2.0.8 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.2.0.4 pkgviews-base:1.2 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2; locks; strict; comment @# @; 1.3 date 2005.03.02.21.42.48; author wiz; state dead; branches; next 1.2; 1.2 date 2001.09.18.21.56.31; author skrll; state Exp; branches; next 1.1; 1.1 date 2001.07.22.01.54.53; author wiz; state Exp; branches; next ; desc @@ 1.3 log @Update to 2.2.12, i.e. copy the contents of mail/cyrus-imapd22 here. @ text @$NetBSD: patch-ah,v 1.2 2001/09/18 21:56:31 skrll Exp $ --- perl/sieve/Makefile.in.orig Tue Dec 26 23:07:25 2000 +++ perl/sieve/Makefile.in @@@@ -63,6 +63,7 @@@@ SASL_LIB=@@LIB_SASL@@ SASL_INC=@@SASLFLAGS@@ +EXTRA_INC=@@CPPFLAGS@@ @@COM_ERR_CPPFLAGS@@ CC=@@CC@@ PERL=@@PERL@@ @@@@ -72,6 +73,7 @@@@ (cd $$d; echo "### Making" all "in" `pwd`; \ if [ -f Makefile.PL ]; then \ SASL_LIB="$(SASL_LIB)" SASL_INC="$(SASL_INC)" CC="$(CC)" \ + EXTRA_INC="$(EXTRA_INC)" \ $(PERL) Makefile.PL PREFIX=$(prefix); \ fi; \ $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) all) || exit 1; \ @ 1.2 log @Update to version 2.0.16 Changes to numerous to mention see the changes.html file. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Fix case-sensitivity problem noted in pkg/13529 by John P. Darrow, by using the patch supplied in that PR. @ text @d3 3 a5 10 --- imap/quota.c.orig Fri Aug 20 15:08:30 1999 +++ imap/quota.c Sat Jul 21 17:13:16 2001 @@@@ -132,7 +132,7 @@@@ int compare_quota(a, b) char *a, *b; { - return strcasecmp(((struct quotaentry *)a)->quota.root, + return strcmp(((struct quotaentry *)a)->quota.root, ((struct quotaentry *)b)->quota.root); } d7 5 a11 13 @@@@ -172,8 +172,8 @@@@ /* If restricting our list, see if this quota file matches */ if (nroots) { for (i = 0; i < nroots; i++) { - if (!strcasecmp(dirent->d_name, roots[i]) || - (!strncasecmp(dirent->d_name, roots[i], strlen(roots[i])) && + if (!strcmp(dirent->d_name, roots[i]) || + (!strncmp(dirent->d_name, roots[i], strlen(roots[i])) && dirent->d_name[strlen(roots[i])] == '.')) break; } if (i == nroots) continue; @@@@ -231,7 +231,7 @@@@ int i, len, thisquota, thisquotalen; d13 8 a20 18 while (firstquota < quota_num && - strncasecmp(name, quota[firstquota].quota.root, + strncmp(name, quota[firstquota].quota.root, strlen(quota[firstquota].quota.root)) > 0) { r = fixquota_finish(firstquota++); if (r) return r; @@@@ -240,9 +240,9 @@@@ thisquota = -1; thisquotalen = 0; for (i = firstquota; - i < quota_num && strcasecmp(name, quota[i].quota.root) >= 0; i++) { + i < quota_num && strcmp(name, quota[i].quota.root) >= 0; i++) { len = strlen(quota[i].quota.root); - if (!strncasecmp(name, quota[i].quota.root, len) && + if (!strncmp(name, quota[i].quota.root, len) && (!name[len] || name[len] == '.')) { quota[i].refcount++; if (len > thisquotalen) { @