diff options
author | Lars Strojny <lstrojny@php.net> | 2008-05-02 13:11:45 +0000 |
---|---|---|
committer | Lars Strojny <lstrojny@php.net> | 2008-05-02 13:11:45 +0000 |
commit | 0bc6920f6647bee1813f5e8d422ed4bae2f32908 (patch) | |
tree | a2addaa09ff92068bb78d490ffe2db08b36d8c5d /ext/reflection | |
parent | 7309946677935690e6c934442138846aea64105f (diff) | |
download | php-git-0bc6920f6647bee1813f5e8d422ed4bae2f32908.tar.gz |
Hard enabling it for Windows, readding define for UNIX [DOC]
Diffstat (limited to 'ext/reflection')
-rwxr-xr-x | ext/reflection/config.m4 | 1 | ||||
-rwxr-xr-x | ext/reflection/config.w32 | 9 |
2 files changed, 3 insertions, 7 deletions
diff --git a/ext/reflection/config.m4 b/ext/reflection/config.m4 index 7691bbf496..3e7a85247f 100755 --- a/ext/reflection/config.m4 +++ b/ext/reflection/config.m4 @@ -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) diff --git a/ext/reflection/config.w32 b/ext/reflection/config.w32 index 66613659e8..343b77d37d 100755 --- a/ext/reflection/config.w32 +++ b/ext/reflection/config.w32 @@ -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'); |