diff options
author | wen <wen@FreeBSD.org> | 2010-07-01 16:40:37 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2010-07-01 16:40:37 +0800 |
commit | a24d7f7bbbde158bf18501bcf9ab9a62e31c1b37 (patch) | |
tree | 26dc3606e2ab2a23024c3cc4eed2615295733bc8 | |
parent | f15190bef274315fdeec9f1ad50dd660a900b4e1 (diff) | |
download | freebsd-ports-gnome-a24d7f7bbbde158bf18501bcf9ab9a62e31c1b37.tar.gz freebsd-ports-gnome-a24d7f7bbbde158bf18501bcf9ab9a62e31c1b37.tar.zst freebsd-ports-gnome-a24d7f7bbbde158bf18501bcf9ab9a62e31c1b37.zip |
- Remove WITH_PGSQL option since postgresql is not supported upstream
PR: ports/148275
Submitted by: Bo-Yi Wu <appleboy.tw@gmail.com> (maintainer)
Feature safe: yes
-rw-r--r-- | www/gallery3/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/www/gallery3/Makefile b/www/gallery3/Makefile index 434cc35c0fd2..61c21211f0a5 100644 --- a/www/gallery3/Makefile +++ b/www/gallery3/Makefile @@ -17,7 +17,7 @@ COMMENT= Web based photo album organizer written in PHP USE_ZIP= yes -USE_PHP= pcre session filter xml iconv spl simplexml json +USE_PHP= pcre session filter xml iconv spl simplexml json mysql WANT_PHP_WEB= yes WRKSRC= ${WRKDIR}/${PORTNAME} @@ -28,7 +28,6 @@ SUB_FILES= pkg-message OPTIONS= NETPBM "Enable netpbm support" off \ IMAGEMAGICK "Enable imagemagick support" on \ GRAPHMAGICK "Enable graphicsmagick support" off \ - PGSQL "Use PostgreSQL instead of MySQL" off \ JHEAD "Enable jhead support" on \ GD "Enable gd support" off \ DCRAW "Enable dcraw support" off \ @@ -37,11 +36,6 @@ OPTIONS= NETPBM "Enable netpbm support" off \ .include <bsd.port.pre.mk> -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.else -USE_PHP+= mysql -.endif .if defined(WITH_GD) USE_PHP+= gd RUN_DEPENDS+= pngtogd:${PORTSDIR}/graphics/gd |