diff options
author | fhajny <fhajny> | 2016-10-08 11:03:26 +0000 |
---|---|---|
committer | fhajny <fhajny> | 2016-10-08 11:03:26 +0000 |
commit | 881a9ef68e6cdae1b6abea13301471adc8bc9396 (patch) | |
tree | 95b9de5685730a7d6e4ecb8daa432c3d236573c9 | |
parent | 0d2ce79120f58881d3e83e497908e931c4289648 (diff) | |
download | pkgsrc-881a9ef68e6cdae1b6abea13301471adc8bc9396.tar.gz |
Enable generic SQL backend support. Fixes pkg/51536. PKGREVISION++
-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 |