summaryrefslogtreecommitdiff
path: root/mail/roundcube
diff options
context:
space:
mode:
authorFlorent Thoumie <flz@FreeBSD.org>2005-12-07 22:36:31 +0000
committerFlorent Thoumie <flz@FreeBSD.org>2005-12-07 22:36:31 +0000
commit5b9bcfa2b3753a886ad37f33c72aebd4a6c595f7 (patch)
tree2010f0d0707dda2b497733e3f25c082834d5564c /mail/roundcube
parentAdd phpmyadmin -- register_globals emulation "import_blacklist" manipulation (diff)
- Don't propose sqlite backend if PHP_VER != 5.
PR: ports/90074 Submitted by: Babak Farrokhi <babak@farrokhi.net>
Notes
Notes: svn path=/head/; revision=150630
Diffstat (limited to 'mail/roundcube')
-rw-r--r--mail/roundcube/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/mail/roundcube/Makefile b/mail/roundcube/Makefile
index b225c40e378f..2a907a577276 100644
--- a/mail/roundcube/Makefile
+++ b/mail/roundcube/Makefile
@@ -37,8 +37,11 @@ SCRIPTS_ENV= SHAREOWN=${SHAREOWN} SHAREGRP=${SHAREGRP} \
WANT_PHP_WEB= yes
OPTIONS= MYSQL "Use MySQL backend" on \
- PGSQL "Use PostgreSQL backend" off \
- SQLITE "Use SQLite backend" off
+ PGSQL "Use PostgreSQL backend" off
+
+.if defined(PHP_VER) && ${PHP_VER} == 5
+OPTIONS+= SQLITE "Use SQLite backend" off
+.endif
.include <bsd.port.pre.mk>