From d601b72f4ea4141809f229cebfaa517288cb4159 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 4 Dec 2018 14:40:12 +0100 Subject: [PATCH] fix missing include config.h --- src/types/assert_stmt.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/types/assert_stmt.c b/src/types/assert_stmt.c index 6dbed60..ee9e50e 100644 --- a/src/types/assert_stmt.c +++ b/src/types/assert_stmt.c @@ -23,6 +23,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *******************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#else +# include "php_config.h" +#endif + #include "data.h" #include "calc.h" -- 2.30.2