FreeBSD Bugzilla – Attachment 125336 Details for
Bug 168946
[PATCH] lang/php5-extensions Avoid optionsNG breakage
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
php5-extensions_1.7.diff
php5-extensions_1.7.diff (text/plain), 5.96 KB, created by
John Marshall
on 2012-06-11 11:00:21 UTC
(
hide
)
Description:
php5-extensions_1.7.diff
Filename:
MIME Type:
Creator:
John Marshall
Created:
2012-06-11 11:00:21 UTC
Size:
5.96 KB
patch
obsolete
>diff -urN lang/php5-extensions_1.7/Makefile lang/php5-extensions/Makefile >--- lang/php5-extensions_1.7/Makefile 2012-05-16 00:36:12.000000000 -0700 >+++ lang/php5-extensions/Makefile 2012-06-11 02:20:11.000000000 -0700 >@@ -25,84 +25,7 @@ > > LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} > >-WITH_CTYPE= yes >-WITH_DOM= yes >-WITH_FILTER= yes >-WITH_HASH= yes >-WITH_ICONV= yes >-WITH_JSON= yes >-WITH_PDO= yes >-WITH_PDO_SQLITE=yes >-WITH_PHAR= yes >-WITH_POSIX= yes >-WITH_SESSION= yes >-WITH_SIMPLEXML= yes >-WITH_SQLITE3= yes >-WITH_TOKENIZER= yes >-WITH_XML= yes >-WITH_XMLREADER= yes >-WITH_XMLWRITER= yes >- >-OPTIONS= BCMATH "bc style precision math functions" off \ >- BZ2 "bzip2 library support" off \ >- CALENDAR "calendar conversion support" off \ >- CTYPE "ctype functions" on \ >- CURL "CURL support" off \ >- DBA "dba support" off \ >- DOM "DOM support" on \ >- EXIF "EXIF support" off \ >- FILEINFO "fileinfo support" off \ >- FILTER "input filter support" on \ >- FTP "FTP support" off \ >- GD "GD library support" off \ >- GETTEXT "gettext library support" off \ >- GMP "GNU MP support" off \ >- HASH "HASH Message Digest Framework" on \ >- ICONV "iconv support" on \ >- IMAP "IMAP support" off \ >- INTERBASE "Interbase 6 database support (Firebird)" off \ >- JSON "JavaScript Object Serialization support" on \ >- LDAP "OpenLDAP support" off \ >- MBSTRING "multibyte string support" off \ >- MCRYPT "Encryption support" off \ >- MSSQL "MS-SQL database support" off \ >- MYSQL "MySQL database support" off \ >- MYSQLI "MySQLi database support" off \ >- ODBC "ODBC support" off \ >- OPENSSL "OpenSSL support" off \ >- PCNTL "pcntl support (CLI only)" off \ >- PDF "PDFlib support (implies GD)" off \ >- PDO "PHP Data Objects Interface (PDO)" on \ >- PDO_SQLITE "PDO sqlite driver" on \ >- PGSQL "PostgreSQL database support" off \ >- PHAR "phar support" on \ >- POSIX "POSIX-like functions" on \ >- PSPELL "pspell support" off \ >- READLINE "readline support (CLI only)" off \ >- RECODE "recode support" off \ >- SESSION "session support" on \ >- SHMOP "shmop support" off \ >- SIMPLEXML "simplexml support" on \ >- SNMP "SNMP support" off \ >- SOAP "SOAP support" off \ >- SOCKETS "sockets support" off \ >- SQLITE3 "sqlite3 support" on \ >- SYBASE_CT "Sybase database support" off \ >- SYSVMSG "System V message support" off \ >- SYSVSEM "System V semaphore support" off \ >- SYSVSHM "System V shared memory support" off \ >- TIDY "TIDY support" off \ >- TOKENIZER "tokenizer support" on \ >- WDDX "WDDX support (implies XML)" off \ >- XML "XML support" on \ >- XMLREADER "XMLReader support" on \ >- XMLRPC "XMLRPC-EPI support" off \ >- XMLWRITER "XMLWriter support" on \ >- XSL "XSL support (Implies DOM)" off \ >- ZIP "ZIP support" off \ >- ZLIB "ZLIB support" off >- >-ALL_OPTIONS= BCMATH BZ2 CALENDAR CTYPE CURL DBA \ >+OPTIONS_DEFINE= BCMATH BZ2 CALENDAR CTYPE CURL DBA \ > DOM EXIF FILEINFO FILTER FTP GD GETTEXT \ > GMP HASH ICONV IMAP INTERBASE JSON LDAP MBSTRING MCRYPT \ > MSSQL MYSQL MYSQLI \ >@@ -112,10 +35,87 @@ > TIDY TOKENIZER WDDX XML XMLREADER XMLRPC XMLWRITER XSL \ > ZIP ZLIB > >+BCMATH_DESC= bc style precision math functions >+BZ2_DESC= bzip2 library support >+CALENDAR_DESC= calendar conversion support >+CTYPE_DESC= ctype functions >+CURL_DESC= CURL support >+DBA_DESC= dba support >+DOM_DESC= DOM support >+EXIF_DESC= EXIF support >+FILEINFO_DESC= fileinfo support >+FILTER_DESC= input filter support >+FTP_DESC= FTP support >+GD_DESC= GD library support >+GETTEXT_DESC= gettext library support >+GMP_DESC= GNU MP support >+HASH_DESC= HASH Message Digest Framework >+ICONV_DESC= iconv support >+IMAP_DESC= IMAP support >+INTERBASE_DESC= Interbase 6 database support (Firebird) >+JSON_DESC= JavaScript Object Serialization support >+LDAP_DESC= OpenLDAP support >+MBSTRING_DESC= multibyte string support >+MCRYPT_DESC= Encryption support >+MSSQL_DESC= MS-SQL database support >+MYSQL_DESC= MySQL database support >+MYSQLI_DESC= MySQLi database support >+ODBC_DESC= ODBC support >+OPENSSL_DESC= OpenSSL support >+PCNTL_DESC= pcntl support (CLI only) >+PDF_DESC= PDFlib support (implies GD) >+PDO_DESC= PHP Data Objects Interface (PDO) >+PDO_SQLITE_DESC= PDO sqlite driver >+PGSQL_DESC= PostgreSQL database support >+PHAR_DESC= phar support >+POSIX_DESC= POSIX-like functions >+PSPELL_DESC= pspell support >+READLINE_DESC= readline support (CLI only) >+RECODE_DESC= recode support >+SESSION_DESC= session support >+SHMOP_DESC= shmop support >+SIMPLEXML_DESC= simplexml support >+SNMP_DESC= SNMP support >+SOAP_DESC= SOAP support >+SOCKETS_DESC= sockets support >+SQLITE3_DESC= sqlite3 support >+SYBASE_CT_DESC= Sybase database support >+SYSVMSG_DESC= System V message support >+SYSVSEM_DESC= System V semaphore support >+SYSVSHM_DESC= System V shared memory support >+TIDY_DESC= TIDY support >+TOKENIZER_DESC= tokenizer support >+WDDX_DESC= WDDX support (implies XML) >+XML_DESC= XML support >+XMLREADER_DESC= XMLReader support >+XMLRPC_DESC= XMLRPC-EPI support >+XMLWRITER_DESC= XMLWriter support >+XSL_DESC= XSL support (Implies DOM) >+ZIP_DESC= ZIP support >+ZLIB_DESC= ZLIB support >+ >+OPTIONS_DEFAULT= CTYPE \ >+ DOM \ >+ FILTER \ >+ HASH \ >+ ICONV \ >+ JSON \ >+ PDO \ >+ PDO_SQLITE \ >+ PHAR \ >+ POSIX \ >+ SESSION \ >+ SIMPLEXML \ >+ SQLITE3 \ >+ TOKENIZER \ >+ XML \ >+ XMLREADER \ >+ XMLWRITER >+ > .include <bsd.port.options.mk> > >-.for opt in ${ALL_OPTIONS} >-. if defined(WITH_${opt}) && !defined(WITHOUT_${opt}) >+.for opt in ${OPTIONS_DEFINE} >+. if ${PORT_OPTIONS:M${opt}} > USE_PHP+= ${opt:L} > . endif > .endfor
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 168946
: 125336