From: Michael Wallner Date: Tue, 4 Dec 2018 13:40:12 +0000 (+0100) Subject: fix missing include config.h X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=commitdiff_plain;h=d601b72f4ea4141809f229cebfaa517288cb4159 fix missing include config.h --- 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"