Browse Source

- Fix PCRE build on Windows; closes bug #53606.

experimental/with_scalar_types
Gustavo André dos Santos Lopes 15 years ago
parent
commit
3143828eb3
  1. 4
      ext/pcre/pcrelib/pcre_internal.h

4
ext/pcre/pcrelib/pcre_internal.h

@ -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
by "configure". */
#if HAVE_STDINT_H
#ifdef PHP_WIN32
#include "win32/php_stdint.h"
#elif HAVE_STDINT_H
#include <stdint.h>
#elif HAVE_INTTYPES_H
#include <inttypes.h>

Loading…
Cancel
Save