Hard enabling it for Windows, readding define for UNIX [DOC]

This commit is contained in:
Lars Strojny 2008-05-02 13:12:02 +00:00
parent b190fdca65
commit 8ea8cd611a
2 changed files with 3 additions and 7 deletions

View File

@ -2,3 +2,4 @@ dnl $Id$
dnl config.m4 for extension reflection
PHP_NEW_EXTENSION(reflection, php_reflection.c, no)
AC_DEFINE(HAVE_REFLECTION, 1)

View File

@ -1,10 +1,5 @@
// $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');
}
EXTENSION("reflection", "php_reflection.c");
AC_DEFINE('HAVE_REFLECTION', 1, 'Reflection support enabled');