aboutsummaryrefslogtreecommitdiffstats
path: root/mail/lmtpd/Makefile
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2004-05-02 18:01:38 +0800
committerpav <pav@FreeBSD.org>2004-05-02 18:01:38 +0800
commit5e86a9e966dd97e1df2d90250803f7e8d66c6712 (patch)
treec3a8174f18ce93853008f89f551df7efb41b1acb /mail/lmtpd/Makefile
parentdc4bbc26b25526948b1c5ecf2e37406d60a88598 (diff)
downloadfreebsd-ports-gnome-5e86a9e966dd97e1df2d90250803f7e8d66c6712.tar.gz
freebsd-ports-gnome-5e86a9e966dd97e1df2d90250803f7e8d66c6712.tar.zst
freebsd-ports-gnome-5e86a9e966dd97e1df2d90250803f7e8d66c6712.zip
- Remove autoconfiguration of OPTIONS, it was making trouble when conflicting
dependencies were detected PR: ports/66140 Submitted by: Xavier Beaudouin <kiwi@oav.net> (maintainer)
Diffstat (limited to 'mail/lmtpd/Makefile')
-rw-r--r--mail/lmtpd/Makefile22
1 files changed, 2 insertions, 20 deletions
diff --git a/mail/lmtpd/Makefile b/mail/lmtpd/Makefile
index d8515ec555cd..654bdf7bc083 100644
--- a/mail/lmtpd/Makefile
+++ b/mail/lmtpd/Makefile
@@ -19,29 +19,11 @@ LIB_DEPENDS= iconv:${PORTSDIR}/converters/libiconv
BUILD_DEPENDS= ${LOCALBASE}/lib/libhome.a:${PORTSDIR}/misc/libhome
OPTIONS= PCRE "Support for PCRE" on
-
-.include <bsd.port.pre.mk>
-
-.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so)
-WITH_MYSQL= yes
OPTIONS+= MYSQL "Support for MySQL Queries and Logs" on
-.else
-OPTIONS+= MYSQL "Support for MySQL Queries and Logs" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libdb3.so)
-WITH_DB3= yes
OPTIONS+= DB3 "Support for DB3" on
-.else
-OPTIONS+= DB3 "Support for DB3" off
-.endif
-
-.if exists(${LOCALBASE}/lib/libdb4.so)
-WITH_DB4= yes
-OPTIONS+= DB4 "Support for DB4" on
-.else
OPTIONS+= DB4 "Support for DB4" off
-.endif
+
+.include <bsd.port.pre.mk>
.if defined(WITH_DB3) && defined(WITH_DB4)
.error You cannot use DB3 and DB4 in the same time.