diff options
author | ghen <ghen@pkgsrc.org> | 2012-03-02 09:58:55 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2012-03-02 09:58:55 +0000 |
commit | 8632cff65b4437801734b975317838f4f21c1425 (patch) | |
tree | 6b477e46dc998183e96b393acd37f6721ed1bfec /mail | |
parent | 9f0602952bdfd0043bf281128f2e0d1aa04feb96 (diff) | |
download | pkgsrc-8632cff65b4437801734b975317838f4f21c1425.tar.gz |
Use ENGINE=MyISAM instead of TYPE=MyISAM in database template, as TYPE is no
longer supported in MySQL 5.5. Noted by Zhang Huangbin. Bump PKGREVISION.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/policyd/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/policyd/Makefile b/mail/policyd/Makefile index 7cc9ebe842d..4387a41641e 100644 --- a/mail/policyd/Makefile +++ b/mail/policyd/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2011/11/29 06:19:43 sbd Exp $ +# $NetBSD: Makefile,v 1.6 2012/03/02 09:58:55 ghen Exp $ DISTNAME= policyd-1.82 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=policyd/} @@ -32,6 +32,11 @@ SUBST_STAGE.config= post-build SUBST_FILES.config= policyd.conf SUBST_SED.config= -e 's,%%VARBASE%%,${VARBASE},' +SUBST_CLASSES+= dbtype +SUBST_STAGE.dbtype= post-build +SUBST_FILES.dbtype= DATABASE.mysql +SUBST_SED.dbtype= -e 's,TYPE=,ENGINE=,' + FILES_SUBST+= BINDIR=${BINDIR} MESSAGE_SUBST+= BINDIR=${BINDIR} MESSAGE_SUBST+= EGDIR=${EGDIR} |