php-src/ext/overload/config.m4

17 lines
440 B
Plaintext
Raw Normal View History

2001-11-30 19:00:13 +00:00
dnl
dnl $Id$
2001-11-30 19:00:13 +00:00
dnl
PHP_ARG_ENABLE(overload,whether to enable user-space object overloading support,
2001-12-10 00:38:18 +00:00
[ --disable-overload Disable user-space object overloading support.], yes)
2002-12-01 00:38:30 +00:00
if test "$PHP_OVERLOAD" != "no"; then
2002-12-01 00:38:30 +00:00
AC_CHECK_FILE([Zend/zend_objects.h], [
AC_MSG_CHECKING(for overload)
AC_MSG_RESULT(not needed with ZendEngine 2)
], [
AC_DEFINE(HAVE_OVERLOAD, 1, [ ])
PHP_NEW_EXTENSION(overload, overload.c, $ext_shared)
])
fi