diff options
author | foobar <sniper@php.net> | 2001-10-31 00:20:34 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-10-31 00:20:34 +0000 |
commit | 91a6ed234d0d096fed8332966935a0a0320c619b (patch) | |
tree | 3e989c3bf874cfbe771612d567b271bef7113dc6 /ext/java | |
parent | 8ea8ebd2de16fbe289cf86e790648cfa50f4c432 (diff) | |
download | php-git-91a6ed234d0d096fed8332966935a0a0320c619b.tar.gz |
Works now with phpize
Diffstat (limited to 'ext/java')
-rw-r--r-- | ext/java/java.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/java/java.c b/ext/java/java.c index 833e5a3fce..0b32ee533e 100644 --- a/ext/java/java.c +++ b/ext/java/java.c @@ -18,12 +18,17 @@ /* $Id$ */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + + /* * This module implements Zend OO syntax overloading support for Java * components using JNI and reflection. */ - #include "php.h" #include "zend_compile.h" #include "php_ini.h" |