blob: b6374edf5323b1eacef633863789e4aa1c1b8293 (
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.5 2007/10/15 15:37:01 jlam Exp $
--- configure.orig Sat Sep 29 14:43:43 2007
+++ configure
@@ -23855,7 +23855,7 @@ done
test -n "$PG_CONFIG" || PG_CONFIG="pg_config"
-PGSQL_LIBS="-lpq"
+test -n "$PGSQL_LIBS" || PGSQL_LIBS="-lpq"
# Check whether --with-pgsql-libs was given.
if test "${with_pgsql_libs+set}" = set; then
@@ -25649,7 +25649,7 @@ rm -f authdaemonrc.h authldaprc.h authmy
result=""
-if test -x "$COURIERCONFIG"
+if false && test -x "$COURIERCONFIG"
then
$COURIERCONFIG >conftest.out || exit 1
sed -n '/^mail/p' <conftest.out >conftest2.out || exit 1
@@ -25661,7 +25661,7 @@ then
result=" (from courier-config)"
fi
-if test -x "$bindir/courierauthconfig"
+if false && test -x "$bindir/courierauthconfig"
then
$bindir/courierauthconfig --configfiles >conftest.out || exit 1
sed -n '/^mail/p' <conftest.out >conftest2.out || exit 1
|