From 3b708ca8af76d128209ab499b13cc677c3a6b966 Mon Sep 17 00:00:00 2001 From: miwi Date: Sun, 10 Dec 2006 22:47:11 +0000 Subject: - Add PostgreSQL support PR: ports/106558 Submitted by: Gerrit Beine (maintainer) --- www/mediawiki113/Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'www/mediawiki113') diff --git a/www/mediawiki113/Makefile b/www/mediawiki113/Makefile index 0034f5e24d80..8ca6a235bdd0 100644 --- a/www/mediawiki113/Makefile +++ b/www/mediawiki113/Makefile @@ -19,15 +19,22 @@ CONFLICTS= mediawiki-1.[0-79].* NO_BUILD= yes USE_MYSQL= yes IGNORE_WITH_MYSQL= 323 -USE_PHP= iconv mbstring pcre session xml zlib readline mysql +USE_PHP= iconv mbstring pcre session xml zlib readline IGNORE_WITH_PHP= 4 WANT_PHP_WEB= yes MEDIAWIKIDIR?= www/mediawiki -OPTIONS= LDAP "Use LDAP authentication" off +OPTIONS= PGSQL "Use PostgreSQL instead of MySQL (not funtional)" off \ + LDAP "Use LDAP authentication" off .include +.if defined(WITH_PGSQL) +USE_PHP+= pgsql +.else +USE_PHP+= mysql +.endif + .if defined(WITH_LDAP) USE_PHP+= ldap .endif -- cgit