summaryrefslogtreecommitdiff
path: root/ext/overload/config.m4
blob: be0576ca289cf883eb0fa9bd016c8bee634833fc (plain)
1
2
3
4
5
6
7
8
9
10
11
dnl
dnl $Id$
dnl

PHP_ARG_ENABLE(overload,whether to enable user-space object overloading support,
[  --disable-overload      Disable user-space object overloading support.], yes)

if test "$PHP_OVERLOAD" != "no"; then
	AC_DEFINE(HAVE_OVERLOAD, 1, [ ])
	PHP_NEW_EXTENSION(overload, overload.c, $ext_shared)
fi