diff options
author | matthew <matthew@FreeBSD.org> | 2015-11-18 21:38:14 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2015-11-18 21:38:14 +0800 |
commit | e7ddf3096cb966e062c70e3aeca410e8e0ce3691 (patch) | |
tree | 190b329a82efa1ffd53422435c1896c5126720a4 | |
parent | 97284a1090d4de19494c48255edc883bc647c598 (diff) | |
download | freebsd-ports-gnome-e7ddf3096cb966e062c70e3aeca410e8e0ce3691.tar.gz freebsd-ports-gnome-e7ddf3096cb966e062c70e3aeca410e8e0ce3691.tar.zst freebsd-ports-gnome-e7ddf3096cb966e062c70e3aeca410e8e0ce3691.zip |
Remove the APC option
The pecl-APC extension is not currently supported at the moment in
PHP-5.5, which is the minimum PHP version required by phpMyAdmin.
Also the 'animated progress bar' support doesn't need APC with PHP
5.4.x or above. (See question 2.9 in the PMA FAQ:
https://phpmyadmin.readthedocs.org/en/latest/faq.html#configuration
)
PR: 204659
Submitted by: sirdice (at) gmail.com
-rw-r--r-- | databases/phpmyadmin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/phpmyadmin/Makefile b/databases/phpmyadmin/Makefile index 21ac3bacbdcd..6ba25cc3ec9e 100644 --- a/databases/phpmyadmin/Makefile +++ b/databases/phpmyadmin/Makefile @@ -3,6 +3,7 @@ PORTNAME= phpMyAdmin DISTVERSION= 4.5.1 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= https://files.phpmyadmin.net/${PORTNAME}/${DISTVERSION}/ DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages @@ -26,10 +27,9 @@ USE_PHP= ctype session filter mbstring json spl mysqli # want this, either turn off GD in the config dialog, or else turn off # FONTCONFIG in the graphics/gd port options. -OPTIONS_DEFINE= APC BZ2 GD MCRYPT OPENSSL PDF XML ZIP ZLIB +OPTIONS_DEFINE= BZ2 GD MCRYPT OPENSSL PDF XML ZIP ZLIB OPTIONS_DEFAULT= BZ2 GD MCRYPT OPENSSL XML ZIP ZLIB -APC_DESC= PHP APC (animated progress bar) support BZ2_DESC= PHP bzip2 library support GD_DESC= PHP GD library support (requires X11) MCRYPT_DESC= PHP MCrypt library support |