- Don't propose sqlite backend if PHP_VER != 5.

PR:		ports/90074
Submitted by:	Babak Farrokhi <babak@farrokhi.net>
This commit is contained in:
Florent Thoumie 2005-12-07 22:36:31 +00:00
parent 4bcaccddbe
commit 5b9bcfa2b3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150630

View file

@ -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>