diff options
author | joneum <joneum@FreeBSD.org> | 2017-11-01 03:53:54 +0800 |
---|---|---|
committer | joneum <joneum@FreeBSD.org> | 2017-11-01 03:53:54 +0800 |
commit | 01a081db14086e8ce83c96eb3f4759eb73d60526 (patch) | |
tree | 349902192fb3354916045e5ad8b4aa0fb5f85403 /sysutils | |
parent | de8c126e706c8fd3c4d01565a778b8b8764e93dc (diff) | |
download | freebsd-ports-gnome-01a081db14086e8ce83c96eb3f4759eb73d60526.tar.gz freebsd-ports-gnome-01a081db14086e8ce83c96eb3f4759eb73d60526.tar.zst freebsd-ports-gnome-01a081db14086e8ce83c96eb3f4759eb73d60526.zip |
sysutils/pear-Log: fix wrong OPTIONS_DEFINDE
Approved by: tcberner (mentor)
MFH: 2017Q4
Differential Revision: https://reviews.freebsd.org/D12881
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pear-Log/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/pear-Log/Makefile b/sysutils/pear-Log/Makefile index 8fc2bfec2793..dcb1b1c979a5 100644 --- a/sysutils/pear-Log/Makefile +++ b/sysutils/pear-Log/Makefile @@ -12,7 +12,7 @@ LICENSE= MIT USES= pear -OPTIONS_DEFINE= PEAR_DB PEAR_MDB2 PEAR_MAIL PEAR_SQLITE +OPTIONS_DEFINE= PEAR_DB PEAR_MDB2 PEAR_MAIL PHP_SQLITE PEAR_DB_DESC= PEAR::DB support PEAR_MDB2_DESC= PEAR::MDB2 support PEAR_MAIL_DESC= PEAR::Mail support @@ -21,6 +21,6 @@ PHP_SQLITE_DESC= PHP sqlite support (php5 only) PEAR_DB_BUILD_DEPENDS= ${PEARDIR}/DB.php:databases/pear-DB PEAR_MDB2_BUILD_DEPENDS= ${PEARDIR}/MDB2.php:databases/pear-MDB2 PEAR_MAIL_BUILD_DEPENDS= ${PEARDIR}/Mail.php:mail/pear-Mail -PHP_SQLITE_USE= PHP=sqlite +PHP_SQLITE_USE= PHP=sqlite3 .include <bsd.port.mk> |