diff options
author | Alex Dupre <ale@FreeBSD.org> | 2004-07-27 23:50:04 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2004-07-27 23:50:04 +0000 |
commit | d8fc58d3c52e7da0f7118217f8d73ff28ee3aac4 (patch) | |
tree | c5e6cc1074e4762857076e68f5f14f1d951066d0 /lang/php5-extensions | |
parent | 430459f9cf2cc53d9315cee0d21f6929de0f249a (diff) | |
download | ports-d8fc58d3c52e7da0f7118217f8d73ff28ee3aac4.tar.gz ports-d8fc58d3c52e7da0f7118217f8d73ff28ee3aac4.zip |
Notes
Diffstat (limited to 'lang/php5-extensions')
-rw-r--r-- | lang/php5-extensions/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/lang/php5-extensions/Makefile b/lang/php5-extensions/Makefile index 558ffed8add6..39b3b149b453 100644 --- a/lang/php5-extensions/Makefile +++ b/lang/php5-extensions/Makefile @@ -18,10 +18,20 @@ COMMENT= A "meta-port" to install PHP extensions NO_BUILD= # none -USE_PHP= yes DEFAULT_PHP_VER=5 BROKEN_WITH_PHP=4 +WITH_CTYPE= yes +WITH_DOM= yes +WITH_ICONV= yes +WITH_PCRE= yes +WITH_POSIX= yes +WITH_SESSION= yes +WITH_SIMPLEXML= yes +WITH_SQLITE= yes +WITH_TOKENIZER= yes +WITH_XML= yes + OPTIONS= BCMATH "bc style precision math functions" off \ BZ2 "bzip2 library support" off \ CALENDAR "calendar conversion support" off \ @@ -108,11 +118,11 @@ ALL_OPTIONS= BCMATH BZ2 CALENDAR CTYPE CURL DBA DBASE DBX DIO \ SEL_OPTIONS= yes .for opt in ${ALL_OPTIONS} -. if defined(WITH_${opt}) +. if defined(WITH_${opt}) && !defined(WITHOUT_${opt}) SEL_OPTIONS+= ${opt:L} . endif .endfor -USE_PHP+= ${SEL_OPTIONS} +USE_PHP= ${SEL_OPTIONS} do-build: @${DO_NADA} |