diff options
author | flz <flz@FreeBSD.org> | 2005-12-07 22:36:31 +0000 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2005-12-07 22:36:31 +0000 |
commit | acbc10a092d7932dcf721369ee03f9e88330b31c (patch) | |
tree | 66c6a3cfd2b8153984aea4dc0143ff6e29775ceb /mail/roundcube | |
parent | c7d7a0ad46debbf51fe20b99eec9f83b70df55d2 (diff) | |
download | FreeBSD-ports-acbc10a092d7932dcf721369ee03f9e88330b31c.zip FreeBSD-ports-acbc10a092d7932dcf721369ee03f9e88330b31c.tar.gz |
- Don't propose sqlite backend if PHP_VER != 5.
PR: ports/90074
Submitted by: Babak Farrokhi <babak@farrokhi.net>
Diffstat (limited to 'mail/roundcube')
-rw-r--r-- | mail/roundcube/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mail/roundcube/Makefile b/mail/roundcube/Makefile index b225c40e..2a907a5 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> |