mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix warnings when compiling static Apache module
This commit is contained in:
parent
9935ddee99
commit
02d647b5f9
4 changed files with 4 additions and 4 deletions
|
@ -163,7 +163,7 @@ extern char *strerror(int);
|
|||
|
||||
#include "fopen-wrappers.h"
|
||||
|
||||
#if REGEX == 1 || REGEX == 0
|
||||
#if (REGEX == 1 || REGEX == 0) && !defined(NO_REGEX_EXTRA_H)
|
||||
#include "regex/regex_extra.h"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#define _PHP_REGEX_H
|
||||
#define NO_REGEX_EXTRA_H
|
||||
|
||||
#include "zend.h"
|
||||
#include "php.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#define _PHP_REGEX_H
|
||||
#define NO_REGEX_EXTRA_H
|
||||
|
||||
#include "php.h"
|
||||
#include "ext/standard/head.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#define _PHP_REGEX_H
|
||||
#define NO_REGEX_EXTRA_H
|
||||
|
||||
#include "php.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue