summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'mail/cyrus-imapd/patches/patch-ae')
-rw-r--r--mail/cyrus-imapd/patches/patch-ae30
1 files changed, 0 insertions, 30 deletions
diff --git a/mail/cyrus-imapd/patches/patch-ae b/mail/cyrus-imapd/patches/patch-ae
deleted file mode 100644
index b8d205885f4..00000000000
--- a/mail/cyrus-imapd/patches/patch-ae
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-ae,v 1.4 2002/10/21 06:12:54 jlam Exp $
-
---- cmulocal/sasl.m4.orig Fri Jul 7 13:46:12 2000
-+++ cmulocal/sasl.m4
-@@ -54,6 +54,9 @@ AC_ARG_WITH(sasl,
-
- SASLFLAGS=""
- LIB_SASL=""
-+ AC_PATH_PROG(SASL_CONFIG, sasl-config, no)
-+
-+ if test "$SASL_CONFIG" = no; then
-
- cmu_saved_CPPFLAGS=$CPPFLAGS
- cmu_saved_LDFLAGS=$LDFLAGS
-@@ -82,6 +85,15 @@ AC_ARG_WITH(sasl,
- LIB_SASL=""
- SASLFLAGS=""
- fi
-+
-+ else # SASL_CONFIG
-+
-+ ac_cv_found_sasl=yes
-+ SASLFLAGS=`$SASL_CONFIG --cflags`
-+ LIB_SASL=`$SASL_CONFIG --libs`
-+
-+ fi
-+
- AC_SUBST(LIB_SASL)
- AC_SUBST(SASLFLAGS)
- ])