Skip to content

Commit 181276b

Browse files
committed
Fix [-Wundef] warning in PCRE extension
1 parent 9cb8954 commit 181276b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/pcre/pcre2lib/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
#endif
2121

2222
/* Define to any value for valgrind support to find invalid memory reads. */
23-
#if HAVE_PCRE_VALGRIND_SUPPORT
23+
#ifdef HAVE_PCRE_VALGRIND_SUPPORT
2424
#define SUPPORT_VALGRIND 1
2525
#endif
2626

2727
/* Define to any value to enable support for Just-In-Time compiling. */
28-
#if HAVE_PCRE_JIT_SUPPORT
28+
#ifdef HAVE_PCRE_JIT_SUPPORT
2929
#define SUPPORT_JIT
3030
#endif
3131

0 commit comments

Comments
 (0)