diff options
author | Remi Collet <remi@php.net> | 2017-06-09 09:29:30 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2017-06-09 09:29:30 +0200 |
commit | 8d8d7ed822a01664479aa8e01e3ea05a00c3d628 (patch) | |
tree | e13a9c6878b8a1b7a20a32c587e1c1bc44669055 /configure.ac | |
parent | 75cda24b823a17f38e2ecca227a8c41bda00970c (diff) | |
download | php-git-8d8d7ed822a01664479aa8e01e3ea05a00c3d628.tar.gz |
prevent multiple include using standard macros
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 77e1bad5e3..80fe2a7a07 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,9 @@ PHP_CANONICAL_HOST_TARGET AC_CONFIG_HEADER(main/php_config.h) AH_TOP([ +#ifndef PHP_CONFIG_H +#define PHP_CONFIG_H + #if defined(__GNUC__) && __GNUC__ >= 4 # define ZEND_API __attribute__ ((visibility("default"))) # define ZEND_DLEXPORT __attribute__ ((visibility("default"))) @@ -98,6 +101,8 @@ int zend_sprintf(char *buffer, const char *format, ...); #endif /* ifndef ZEND_ACCONFIG_H_NO_C_PROTOS */ #undef PTHREADS + +#endif /* PHP_CONFIG_H */ ]) PHP_MAJOR_VERSION=7 |