pkgsrc/devel/apr-util/options.mk
adrianp 374363adb9 If sqlite is installed but not selected by PKG_OPTIONS then don't
automagically comple in support for it.  This fixes PLIST errors on install.
2008-09-18 21:30:52 +00:00

42 lines
1,022 B
Makefile

# $NetBSD: options.mk,v 1.3 2008/09/18 21:30:52 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.apr-util
PKG_SUPPORTED_OPTIONS= db4 ldap mysql pgsql sqlite3
.include "../../mk/bsd.options.mk"
PLIST_VARS+= ldap mysql pgsql sqlite3
.if !empty(PKG_OPTIONS:Mdb4)
CONFIGURE_ARGS+= \
--with-berkeley-db=${BUILDLINK_PREFIX.db4}/include:${LOCALBASE}
. include "../../databases/db4/buildlink3.mk"
.else
CONFIGURE_ARGS+= --with-dbm=sdbm
.endif
.if !empty(PKG_OPTIONS:Mldap)
PLIST.ldap= yes
CONFIGURE_ARGS+= --with-ldap
. include "../../databases/openldap-client/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mmysql)
PLIST.mysql= yes
CONFIGURE_ARGS+= --with-mysql
. include "../../mk/mysql.buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mpgsql)
PLIST.pgsql= yes
CONFIGURE_ARGS+= --with-pgsql
. include "../../mk/pgsql.buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Msqlite3)
PLIST.sqlite3= yes
CONFIGURE_ARGS+= --with-sqlite3
. include "../../databases/sqlite3/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-sqlite3
.endif