blob: 7cf69f40fbb59995d745885ef952988eabf04426 (
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,
[ --enable-overload Enable user-space object overloading support.])
if test "$PHP_OVERLOAD" != "no"; then
AC_DEFINE(HAVE_OVERLOAD, 1, [ ])
PHP_EXTENSION(overload, $ext_shared)
fi
|