summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd22/files/patch-dg
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2004-07-26 20:39:54 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2004-07-26 20:39:54 +0000
commitfd095c476678013ef266338b51b424ee67795ab2 (patch)
tree260054500cc1f40e0a94e69fc3a9d02b522c23b1 /mail/cyrus-imapd22/files/patch-dg
parentUpdate to 1.0.6, and use the new libtool scheme. (diff)
- Update to 2.2.7.
- Fix build problem with WITH_SNMP_5 on FreeBSD 4.X with perl5.8 installed. Though we need 5.8's libperl.so, /usr/lib/libperl.so was linked. [1] Reported by: Thomas Vogt <tv@solnet.ch> [1]
Notes
Notes: svn path=/head/; revision=114802
Diffstat (limited to 'mail/cyrus-imapd22/files/patch-dg')
-rw-r--r--mail/cyrus-imapd22/files/patch-dg14
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/cyrus-imapd22/files/patch-dg b/mail/cyrus-imapd22/files/patch-dg
index 5c54d21287d8..80dc928b96d0 100644
--- a/mail/cyrus-imapd22/files/patch-dg
+++ b/mail/cyrus-imapd22/files/patch-dg
@@ -1,7 +1,7 @@
Index: tools/mkimap
diff -u tools/mkimap.orig tools/mkimap
---- tools/mkimap.orig Mon Mar 10 03:39:36 2003
-+++ tools/mkimap Fri Mar 21 17:24:10 2003
+--- tools/mkimap.orig Wed Jun 30 03:16:54 2004
++++ tools/mkimap Tue Jul 27 04:47:43 2004
@@ -61,6 +61,9 @@
$imapdconf = shift || "/etc/imapd.conf";
@@ -19,18 +19,18 @@ diff -u tools/mkimap.orig tools/mkimap
+mkdir $d, 0755;
chdir $d or die "couldn't change to $d";
- mkdir "proc", 0755;
+ mkdir "proc", 0755 || warn "can't create $d/proc: $!";
@@ -95,11 +99,14 @@
- mkdir "msg", 0755;
- mkdir "ptclient", 0755;
+ mkdir "msg", 0755 || warn "can't create $d/msg: $!";
+ mkdir "ptclient", 0755 || warn "can't create $d/ptclient: $!";
+system "/usr/sbin/chown -R $cyrus_user:$cyrus_group .";
+
while ($part = shift @parts) {
print "creating $part...\n";
- mkdir $part, 0755;
+ mkdir $part, 0755 || warn "can't create $part: $!";
chdir $part or die "couldn't change to partition $part";
- mkdir "stage.", 0755;
+ mkdir "stage.", 0755 || warn "can't create $part/stage.: $!";
+ system "/usr/sbin/chown -R $cyrus_user:$cyrus_group $part";
}