Skip to content

Commit 9863118

Browse files
committed
Zend/zend_portability: include php_config.h for HAVE_*
1 parent 5a4d267 commit 9863118

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Zend/zend_portability.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
#ifndef ZEND_PORTABILITY_H
2222
#define ZEND_PORTABILITY_H
2323

24+
#ifdef PHP_WIN32
25+
#include "config.w32.h"
26+
#else
27+
#include "php_config.h" // for HAVE_*
28+
#endif
29+
2430
#ifdef __cplusplus
2531
#define BEGIN_EXTERN_C() extern "C" {
2632
#define END_EXTERN_C() }

0 commit comments

Comments
 (0)