diff options
author | adrianp <adrianp@pkgsrc.org> | 2008-09-18 21:30:52 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2008-09-18 21:30:52 +0000 |
commit | d08d64f77425d6770b1e19a83065e29aa89aa92e (patch) | |
tree | 16b5d5e00c7ca0e9d45cea44d58c20e617d5b734 /devel/apr-util | |
parent | ce0f370e069c0cfa5a8a5f31f2c20a75e657cbcf (diff) | |
download | pkgsrc-d08d64f77425d6770b1e19a83065e29aa89aa92e.tar.gz |
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.
Diffstat (limited to 'devel/apr-util')
-rw-r--r-- | devel/apr-util/options.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/apr-util/options.mk b/devel/apr-util/options.mk index 34f4b2d90fa..3f5d23b1df3 100644 --- a/devel/apr-util/options.mk +++ b/devel/apr-util/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2008/09/08 09:58:43 adam Exp $ +# $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 @@ -37,4 +37,6 @@ CONFIGURE_ARGS+= --with-pgsql PLIST.sqlite3= yes CONFIGURE_ARGS+= --with-sqlite3 . include "../../databases/sqlite3/buildlink3.mk" +.else +CONFIGURE_ARGS+= --without-sqlite3 .endif |