diff options
author | fhajny <fhajny@pkgsrc.org> | 2016-10-08 11:03:26 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2016-10-08 11:03:26 +0000 |
commit | 5c88431328618d5c2e14b48450cdca1b6ebde724 (patch) | |
tree | 1023432c92dc9a8fa66e926d3155869e96c60815 /mail | |
parent | d1b595871aec841e369cce8cc62a652d10661121 (diff) | |
download | pkgsrc-5c88431328618d5c2e14b48450cdca1b6ebde724.tar.gz |
Enable generic SQL backend support. Fixes pkg/51536. PKGREVISION++
Diffstat (limited to 'mail')
-rw-r--r-- | mail/dovecot2/Makefile | 4 | ||||
-rw-r--r-- | mail/dovecot2/Makefile.common | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/mail/dovecot2/Makefile b/mail/dovecot2/Makefile index 7d84a1a940c..d55bbcafd7e 100644 --- a/mail/dovecot2/Makefile +++ b/mail/dovecot2/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.91 2016/09/19 13:04:18 wiz Exp $ +# $NetBSD: Makefile,v 1.92 2016/10/08 11:03:26 fhajny Exp $ # .include "../../mail/dovecot2/Makefile.common" -PKGREVISION= 3 +PKGREVISION= 4 RCD_SCRIPTS= dovecot SMF_NAME= dovecot diff --git a/mail/dovecot2/Makefile.common b/mail/dovecot2/Makefile.common index 9a9eab25ef8..814d3195816 100644 --- a/mail/dovecot2/Makefile.common +++ b/mail/dovecot2/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2016/07/18 15:03:05 fhajny Exp $ +# $NetBSD: Makefile.common,v 1.2 2016/10/08 11:03:26 fhajny Exp $ # # when updating to a new release, update ABI depends in # the buildlink3.mk file as well, since the plugins' version @@ -32,7 +32,9 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-ssldir=${SSLDIR} CONFIGURE_ARGS+= --without-gssapi CONFIGURE_ARGS+= --without-ldap -CONFIGURE_ARGS+= --without-sql + +# Enable generic SQL backend support +CONFIGURE_ARGS+= --with-sql TEST_TARGET= check |