php-src/ext/reflection/config.m4

11 lines
342 B
Plaintext
Raw Normal View History

2005-11-17 22:42:00 +00:00
dnl $Id$
dnl config.m4 for extension reflection
2005-11-17 22:42:00 +00:00
PHP_ARG_ENABLE(reflection, whether to enable reflection support,
2005-12-03 01:12:35 +00:00
[ --disable-reflection Disable reflection support], yes, no)
2005-11-17 22:42:00 +00:00
if test "$PHP_REFLECTION" != "no"; then
2005-11-17 23:21:15 +00:00
AC_DEFINE(HAVE_REFLECTION, 1, [Whether Reflection is enabled])
PHP_NEW_EXTENSION(reflection, php_reflection.c, no)
2005-11-17 22:42:00 +00:00
fi