diff options
author | Alex Dupre <ale@FreeBSD.org> | 2004-07-21 09:35:04 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2004-07-21 09:35:04 +0000 |
commit | ed5c3a6d398cefa14c435373c057ac91966cb8b3 (patch) | |
tree | 2c6dd7f39c9986e63898c7071397cc1a180408e4 | |
parent | Add pecl-fileinfo 0.2, a PECL extension to retrieve info about files. (diff) |
Add support for fileinfo extension.
Notes
Notes:
svn path=/head/; revision=114333
-rw-r--r-- | Mk/bsd.php.mk | 7 | ||||
-rw-r--r-- | lang/php4-extensions/Makefile | 3 | ||||
-rw-r--r-- | lang/php5-extensions/Makefile | 3 |
3 files changed, 8 insertions, 5 deletions
diff --git a/Mk/bsd.php.mk b/Mk/bsd.php.mk index cd4d776596ab..dda8b27c3010 100644 --- a/Mk/bsd.php.mk +++ b/Mk/bsd.php.mk @@ -244,9 +244,9 @@ php-ini: .if ${USE_PHP:L} != "yes" # non-version specific components _USE_PHP_ALL= bcmath bz2 calendar crack ctype curl dba dbase dbx dio \ - dom domxml exif filepro fribidi ftp gd gettext gmp iconv \ - imagick imap interbase ldap mbstring mcal mcrypt mcve mhash \ - ming mnogosearch mssql mysql mysqli ncurses odbc \ + dom domxml exif fileinfo filepro fribidi ftp gd gettext gmp \ + iconv imagick imap interbase ldap mbstring mcal mcrypt mcve \ + mhash ming mnogosearch mssql mysql mysqli ncurses odbc \ openssl oracle overload panda pcntl pcre pdf pgsql posix \ pspell readline recode session shmop simplexml snmp soap \ sockets sqlite sybase_ct sysvmsg sysvsem sysvshm \ @@ -265,6 +265,7 @@ dio_DEPENDS= devel/php${PHP_VER}-dio dom_DEPENDS= textproc/php${PHP_VER}-dom domxml_DEPENDS= textproc/php${PHP_VER}-domxml exif_DEPENDS= graphics/php${PHP_VER}-exif +fileinfo_DEPENDS= sysutils/pecl-fileinfo filepro_DEPENDS=databases/php${PHP_VER}-filepro fribidi_DEPENDS=converters/pecl-fribidi ftp_DEPENDS= ftp/php${PHP_VER}-ftp diff --git a/lang/php4-extensions/Makefile b/lang/php4-extensions/Makefile index 8d3b1ed040f3..695b10fda7c6 100644 --- a/lang/php4-extensions/Makefile +++ b/lang/php4-extensions/Makefile @@ -34,6 +34,7 @@ OPTIONS= BCMATH "bc style precision math functions" off \ DIO "Direct I/O support" off \ DOMXML "DOM support" off \ EXIF "EXIF support" off \ + FILEINFO "fileinfo support" off \ FILEPRO "filePro support" off \ FRIBIDI "FriBidi support" off \ FTP "FTP support" off \ @@ -95,7 +96,7 @@ OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options .endif ALL_OPTIONS= BCMATH BZ2 CALENDAR CRACK CTYPE CURL DBA DBASE DBX DIO \ - DOMXML EXIF FILEPRO FRIBIDI FTP GD GETTEXT \ + DOMXML EXIF FILEINFO FILEPRO FRIBIDI FTP GD GETTEXT \ GMP ICONV IMAGICK IMAP INTERBASE LDAP MBSTRING MCAL MCRYPT \ MCVE MHASH MIME_MAGIC MING MNOGOSEARCH MSSQL MYSQL NCURSES \ ODBC OPENSSL ORACLE OVERLOAD PANDA PCNTL PCRE PDF PGSQL POSIX \ diff --git a/lang/php5-extensions/Makefile b/lang/php5-extensions/Makefile index a95de04a8a3f..558ffed8add6 100644 --- a/lang/php5-extensions/Makefile +++ b/lang/php5-extensions/Makefile @@ -33,6 +33,7 @@ OPTIONS= BCMATH "bc style precision math functions" off \ DIO "Direct I/O support" off \ DOM "DOM support" on \ EXIF "EXIF support" off \ + FILEINFO "fileinfo support" off \ FILEPRO "filePro support" off \ FRIBIDI "FriBidi support" off \ FTP "FTP support" off \ @@ -97,7 +98,7 @@ OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options .endif ALL_OPTIONS= BCMATH BZ2 CALENDAR CTYPE CURL DBA DBASE DBX DIO \ - DOM EXIF FILEPRO FRIBIDI FTP GD GETTEXT \ + DOM EXIF FILEINFO FILEPRO FRIBIDI FTP GD GETTEXT \ GMP ICONV IMAGICK IMAP INTERBASE LDAP MBSTRING MCRYPT \ MCVE MHASH MIME_MAGIC MING MNOGOSEARCH MSSQL MYSQL MYSQLI \ NCURSES ODBC OPENSSL ORACLE PANDA PCNTL PCRE PDF PGSQL POSIX \ |