diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2016-04-09 15:57:57 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2016-04-09 15:57:57 +0300 |
commit | c6c44c36298d573932f153071f3bb20007924173 (patch) | |
tree | faeaee359288d14e586d773453fc5ff276f5d873 | |
parent | 403c3f95fe9687d488c9e18643fa88a8c7ea91f6 (diff) | |
download | php-git-c6c44c36298d573932f153071f3bb20007924173.tar.gz |
Enable configure without opcache-file and huge-code-pages
This doesn't chagne the default (yes for both features), but respects
--disable-opcache-file and --disable-huge-code-pages configure flags if given.
-rw-r--r-- | ext/opcache/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/opcache/config.m4 b/ext/opcache/config.m4 index 657d859691..fbb9b21c94 100644 --- a/ext/opcache/config.m4 +++ b/ext/opcache/config.m4 @@ -6,11 +6,11 @@ PHP_ARG_ENABLE(opcache, whether to enable Zend OPcache support, [ --disable-opcache Disable Zend OPcache support], yes) PHP_ARG_ENABLE(opcache-file, whether to enable file based caching, -[ --disable-opcache-file Disable file based caching], yes) +[ --disable-opcache-file Disable file based caching], yes, no) PHP_ARG_ENABLE(huge-code-pages, whether to enable copying PHP CODE pages into HUGE PAGES, [ --disable-huge-code-pages - Disable copying PHP CODE pages into HUGE PAGES], yes) + Disable copying PHP CODE pages into HUGE PAGES], yes, no) if test "$PHP_OPCACHE" != "no"; then |