diff options
Diffstat (limited to 'lang/php5')
-rw-r--r-- | lang/php5/Makefile.ext | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lang/php5/Makefile.ext b/lang/php5/Makefile.ext index 49b14689829d..41148c443970 100644 --- a/lang/php5/Makefile.ext +++ b/lang/php5/Makefile.ext @@ -49,6 +49,7 @@ CONFIGURE_ARGS+=--enable-dba OPTIONS= CDB "cdb database support" on \ DB4 "Berkeley DB4 support" off \ GDBM "GDBM database support" off \ + QDBM "QDBM database support" off \ INIFILE "INI file support" on \ FLATFILE "flatfile support" on @@ -433,6 +434,11 @@ LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+=--with-gdbm=${LOCALBASE} . endif +. if defined(WITH_QDBM) +LIB_DEPENDS+= qdbm.14:${PORTSDIR}/databases/qdbm + +CONFIGURE_ARGS+=--with-qdbm=${LOCALBASE} +. endif . if defined(WITHOUT_INIFILE) CONFIGURE_ARGS+=--without-inifile . endif |