diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-03-18 14:12:04 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-03-18 14:12:04 +0000 |
commit | 353984c1551d41b01d1c9826a3f941103c6de87a (patch) | |
tree | 6e15466d094b5cdadf3fa88a87d9607f2981fa59 | |
parent | - Update to 3.1.1 (diff) |
- Add PDO extension to a php5-extensions metaport and enable it by default.
This is consistent with vendor configure.
PR: ports/90565
Submitted by: Alexander Zhuravlev <zaa@zaa.pp.ru>
Approved by: maintainer timeout (ale; 3 months)
-rw-r--r-- | Mk/bsd.php.mk | 3 | ||||
-rw-r--r-- | lang/php5-extensions/Makefile | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Mk/bsd.php.mk b/Mk/bsd.php.mk index 6793f13c4b67..56ae71d16f90 100644 --- a/Mk/bsd.php.mk +++ b/Mk/bsd.php.mk @@ -261,7 +261,7 @@ _USE_PHP_ALL= bcmath bz2 calendar ctype curl dba dbase \ # version specific components _USE_PHP_VER4= ${_USE_PHP_ALL} crack dbx dio domxml mcal mcve \ mnogosearch oracle overload pfpro xslt yp -_USE_PHP_VER5= ${_USE_PHP_ALL} dom mysqli simplexml soap sqlite \ +_USE_PHP_VER5= ${_USE_PHP_ALL} dom mysqli pdo simplexml soap sqlite \ tidy xmlreader xmlwriter xsl bcmath_DEPENDS= math/php${PHP_VER}-bcmath @@ -308,6 +308,7 @@ panda_DEPENDS= print/pecl-panda pcntl_DEPENDS= devel/php${PHP_VER}-pcntl pcre_DEPENDS= devel/php${PHP_VER}-pcre pdf_DEPENDS= print/pecl-pdflib +pdo_DEPENDS= databases/pecl-PDO pfpro_DEPENDS= finance/php${PHP_VER}-pfpro pgsql_DEPENDS= databases/php${PHP_VER}-pgsql posix_DEPENDS= sysutils/php${PHP_VER}-posix diff --git a/lang/php5-extensions/Makefile b/lang/php5-extensions/Makefile index d1bbb2cfe67a..c46d8376ea68 100644 --- a/lang/php5-extensions/Makefile +++ b/lang/php5-extensions/Makefile @@ -26,6 +26,7 @@ WITH_CTYPE= yes WITH_DOM= yes WITH_ICONV= yes WITH_PCRE= yes +WITH_PDO= yes WITH_POSIX= yes WITH_SESSION= yes WITH_SIMPLEXML= yes @@ -70,6 +71,7 @@ OPTIONS= BCMATH "bc style precision math functions" off \ PCNTL "pcntl support (CLI only)" off \ PCRE "Perl Compatible Regular Expression support" on \ PDF "PDFlib support (implies GD)" off \ + PDO "PHP Data Objects Interface (PDO)" on \ PGSQL "PostgreSQL database support" off \ POSIX "POSIX-like functions" on \ PSPELL "pspell support" off \ @@ -110,7 +112,7 @@ ALL_OPTIONS= BCMATH BZ2 CALENDAR CTYPE CURL DBA DBASE \ DOM EXIF FILEINFO FILEPRO FRIBIDI FTP GD GETTEXT \ GMP ICONV IMAGICK IMAP INTERBASE LDAP MBSTRING MCRYPT \ MHASH MIME_MAGIC MING MSSQL MYSQL MYSQLI \ - NCURSES ODBC OPENSSL PANDA PCNTL PCRE PDF PGSQL POSIX \ + NCURSES ODBC OPENSSL PANDA PCNTL PCRE PDF PDO PGSQL POSIX \ PSPELL READLINE RECODE SESSION SHMOP SIMPLEXML SNMP SOAP \ SOCKETS SQLITE SYBASE_CT SYSVMSG SYSVSEM SYSVSHM \ TIDY TOKENIZER WDDX XML XMLREADER XMLRPC XMLWRITER XSL \ |