summaryrefslogtreecommitdiff
path: root/Zend/Zend.m4
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/Zend.m4')
-rw-r--r--Zend/Zend.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/Zend/Zend.m4 b/Zend/Zend.m4
index 7c715e853b..b0f913aac3 100644
--- a/Zend/Zend.m4
+++ b/Zend/Zend.m4
@@ -196,18 +196,9 @@ AC_ARG_ENABLE([zts],
[ZEND_ZTS=$enableval],
[ZEND_ZTS=no])
-AC_ARG_ENABLE([inline-optimization],
- [AS_HELP_STRING([--disable-inline-optimization],
- [If building zend_execute.lo fails, try this switch])],
- [ZEND_INLINE_OPTIMIZATION=$enableval],
- [ZEND_INLINE_OPTIMIZATION=yes])
-
AC_MSG_CHECKING(whether to enable thread-safety)
AC_MSG_RESULT($ZEND_ZTS)
-AC_MSG_CHECKING(whether to enable inline optimization for GCC)
-AC_MSG_RESULT($ZEND_INLINE_OPTIMIZATION)
-
AC_MSG_CHECKING(whether to enable Zend debugging)
AC_MSG_RESULT($ZEND_DEBUG)
@@ -232,18 +223,8 @@ if test "$ZEND_ZTS" = "yes"; then
CFLAGS="$CFLAGS -DZTS"
fi
-changequote({,})
-if test -n "$GCC" && test "$ZEND_INLINE_OPTIMIZATION" != "yes"; then
- INLINE_CFLAGS=`echo $ac_n "$CFLAGS $ac_c" | sed s/-O[0-9s]*//`
-else
- INLINE_CFLAGS="$CFLAGS"
-fi
-changequote([,])
-
AC_C_INLINE
-AC_SUBST(INLINE_CFLAGS)
-
AC_MSG_CHECKING(target system is Darwin)
if echo "$target" | grep "darwin" > /dev/null; then
AC_DEFINE([DARWIN], 1, [Define if the target system is darwin])