mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
- Fix PCRE build on Windows; closes bug #53606.
This commit is contained in:
parent
34c6447e9e
commit
ff32c32fba
1 changed files with 3 additions and 1 deletions
|
@ -192,7 +192,9 @@ stdint.h is available, include it; it may define INT64_MAX. Systems that do not
|
||||||
have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set
|
have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set
|
||||||
by "configure". */
|
by "configure". */
|
||||||
|
|
||||||
#if HAVE_STDINT_H
|
#ifdef PHP_WIN32
|
||||||
|
#include "win32/php_stdint.h"
|
||||||
|
#elif HAVE_STDINT_H
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#elif HAVE_INTTYPES_H
|
#elif HAVE_INTTYPES_H
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue