mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
11 lines
237 B
JavaScript
Executable File
11 lines
237 B
JavaScript
Executable File
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("reflection", "disable reflection support", "yes");
|
|
|
|
if (PHP_REFLECTION != "no") {
|
|
EXTENSION("reflection", "php_reflection.c");
|
|
AC_DEFINE('HAVE_REFLECTION', 1, 'Reflection support enabled');
|
|
}
|
|
|