From 3d6e4e85b3fa6f27664993f1fedbf3da8b271aff Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 17 Nov 2005 22:42:00 +0000 Subject: - Make this an extension --- ext/reflection/config.m4 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 ext/reflection/config.m4 (limited to 'ext/reflection/config.m4') diff --git a/ext/reflection/config.m4 b/ext/reflection/config.m4 new file mode 100755 index 0000000000..0136e6b351 --- /dev/null +++ b/ext/reflection/config.m4 @@ -0,0 +1,12 @@ +dnl $Id$ +dnl config.m4 for extension bitset + +PHP_ARG_ENABLE(reflection, whether to enable reflection support, +[ --disable-reflection Disable reflection support]) + +if test "$PHP_REFLECTION" != "no"; then + if test "$ext_shared" = "yes"; then + AC_MSG_ERROR(Cannot build reflectino as a shared module) + fi + PHP_NEW_EXTENSION(reflection, php_reflection.c) +fi -- cgit v1.2.1