blob: ed75f0707e4c9e38bfc308aa68c054d5b4056d7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
$NetBSD: patch-ab,v 1.2 2005/10/20 20:26:37 jlam Exp $
--- maildrop/configure.orig 2005-09-23 20:28:40.000000000 -0400
+++ maildrop/configure
@@ -22118,7 +22118,7 @@ fi
test "x$prefix" = xNONE && prefix=$ac_default_prefix
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-if test -d $srcdir/../courier
+if true || test -d $srcdir/../courier
then
#
# This version of maildrop is integrated into Courier mail server
@@ -22255,7 +22255,7 @@ SPOOLDIR="$DIR"
get_spooldir() {
-if test -d $srcdir/../courier
+if true || test -d $srcdir/../courier
then
MBOX_RESET_GID=1
SPOOLDIR="./Maildir"
@@ -22323,7 +22323,7 @@ if test "${with_default_maildrop+set}" =
else
# Courier defaults to ./Maildir
- if test -d $srcdir/../courier
+ if true || test -d $srcdir/../courier
then
maildrop_cv_SYS_INSTALL_MBOXDIR=./Maildir
fi
|