mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
- Make this an extension
This commit is contained in:
2
ext/reflection/CREDITS
Executable file
2
ext/reflection/CREDITS
Executable file
@@ -0,0 +1,2 @@
|
||||
reflection
|
||||
Marcus Boerger, Timm Friebe, George Schlossnagle, Andrei Zmievski
|
||||
12
ext/reflection/config.m4
Executable file
12
ext/reflection/config.m4
Executable file
@@ -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
|
||||
9
ext/reflection/config.w32
Executable file
9
ext/reflection/config.w32
Executable file
@@ -0,0 +1,9 @@
|
||||
// $Id$
|
||||
// vim:ft=javascript
|
||||
|
||||
ARG_ENABLE("reflection", "disable reflection support", "yes");
|
||||
|
||||
if (PHP_REFLECTION != "no") {
|
||||
EXTENSION("reflectino", "php_reflection.c");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user