Browse Source

two new check functions for use in config.m4 file

experimental/ZendEngine2
Hartmut Holzgraefe 25 years ago
parent
commit
48cba31e58
  1. 15
      acinclude.m4

15
acinclude.m4

@ -1154,3 +1154,18 @@ AC_DEFUN(PHP_CHECK_LIBRARY, [
])dnl
])
dnl
AC_DEFUN(PHP_CHECK_INTERACTIVE, [
if test "$PHP_SAPI" != "cgi"; then
AC_MSG_ERROR([$1 extension can only be used with CGI build!])
fi
])
dnl
AC_DEFUN(PHP_CHECK_STANDALONE, [
if test "$PHP_SAPI" != "cgi"; then
AC_MSG_ERROR([$1 extension may affect webserver operation internals, so it can only be used with CGI build!])
fi
])
Loading…
Cancel
Save