summaryrefslogtreecommitdiff
path: root/Zend/Zend.m4
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-03-16 16:59:31 +0800
committerXinchen Hui <laruence@php.net>2015-03-16 16:59:31 +0800
commitf54f806f4e9f1220c451de175873c167b3308348 (patch)
tree73088590ce2c15cdd872fed1bfdd2e5f043eb837 /Zend/Zend.m4
parentb48f3ecd92c4820ce835dbbf75a79c7fcb72a8d2 (diff)
downloadphp-git-f54f806f4e9f1220c451de175873c167b3308348.tar.gz
Remove --with-zend-vm (it doesn't work anyway)
Diffstat (limited to 'Zend/Zend.m4')
-rw-r--r--Zend/Zend.m424
1 files changed, 0 insertions, 24 deletions
diff --git a/Zend/Zend.m4 b/Zend/Zend.m4
index 945409eb1e..16f2d5f923 100644
--- a/Zend/Zend.m4
+++ b/Zend/Zend.m4
@@ -153,14 +153,6 @@ AC_ARG_ENABLE(debug,
AC_DEFUN([LIBZEND_OTHER_CHECKS],[
-AC_ARG_WITH(zend-vm,
-[ --with-zend-vm=TYPE Set virtual machine dispatch method. Type is
- one of "CALL", "SWITCH" or "GOTO" [TYPE=CALL]],[
- PHP_ZEND_VM=$withval
-],[
- PHP_ZEND_VM=CALL
-])
-
AC_ARG_ENABLE(maintainer-zts,
[ --enable-maintainer-zts Enable thread safety - for code maintainers only!!],[
ZEND_MAINTAINER_ZTS=$enableval
@@ -176,9 +168,6 @@ AC_ARG_ENABLE(inline-optimization,
ZEND_INLINE_OPTIMIZATION=yes
])
-AC_MSG_CHECKING([virtual machine dispatch method])
-AC_MSG_RESULT($PHP_ZEND_VM)
-
AC_MSG_CHECKING(whether to enable thread-safety)
AC_MSG_RESULT($ZEND_MAINTAINER_ZTS)
@@ -188,19 +177,6 @@ AC_MSG_RESULT($ZEND_INLINE_OPTIMIZATION)
AC_MSG_CHECKING(whether to enable Zend debugging)
AC_MSG_RESULT($ZEND_DEBUG)
-case $PHP_ZEND_VM in
- SWITCH)
- AC_DEFINE(ZEND_VM_KIND,ZEND_VM_KIND_SWITCH,[virtual machine dispatch method])
- ;;
- GOTO)
- AC_DEFINE(ZEND_VM_KIND,ZEND_VM_KIND_GOTO,[virtual machine dispatch method])
- ;;
- *)
- PHP_ZEND_VM=CALL
- AC_DEFINE(ZEND_VM_KIND,ZEND_VM_KIND_CALL,[virtual machine dispatch method])
- ;;
-esac
-
if test "$ZEND_DEBUG" = "yes"; then
AC_DEFINE(ZEND_DEBUG,1,[ ])
echo " $CFLAGS" | grep ' -g' >/dev/null || DEBUG_CFLAGS="-g"