00001 /*-*- mode: C; tab-width:4 -*-*/ 00002 00007 #ifndef PHP_WRAPPER_H 00008 #define PHP_WRAPPER_H 00009 00010 #include "php.h" 00011 00012 /* 00013 PHP 5.0.1 defines the following nonsense: 00014 00015 #if HAVE_ASSERT_H 00016 #if PHP_DEBUG 00017 #undef NDEBUG 00018 #else 00019 #ifndef NDEBUG 00020 #define NDEBUG 00021 #endif 00022 #endif 00023 00024 Revert it! 00025 */ 00026 00027 #undef NDEBUG 00028 #ifndef JAVA_COMPILE_DEBUG 00029 #define NDEBUG 00030 #endif 00031 00032 #include <assert.h> 00033 #include "init_cfg.h" 00034 00035 #endif