diff options
author | ale <ale@FreeBSD.org> | 2006-09-10 16:37:43 +0000 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-09-10 16:37:43 +0000 |
commit | c85032de806a780c60e7bd063151fcd3cb6fb959 (patch) | |
tree | 95476ae4614a412a30291066242a7094c47e1d53 /lang/php53 | |
parent | 3b1cbd15441e5e6731327e6f7a578074cec89816 (diff) | |
download | FreeBSD-ports-c85032de806a780c60e7bd063151fcd3cb6fb959.zip FreeBSD-ports-c85032de806a780c60e7bd063151fcd3cb6fb959.tar.gz |
Add support for QDBM.
PR: ports/102392
Submitted by: Gea-Suan Lin <gslin@gslin.org>
Diffstat (limited to 'lang/php53')
-rw-r--r-- | lang/php53/Makefile.ext | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lang/php53/Makefile.ext b/lang/php53/Makefile.ext index 49b1468..41148c4 100644 --- a/lang/php53/Makefile.ext +++ b/lang/php53/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 |