We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bc381e commit 34f97fdCopy full SHA for 34f97fd
config.m4
@@ -14,6 +14,12 @@ if test "$PHP_SPX" = "yes"; then
14
15
CFLAGS="-Werror -Wall -O3 -pthread -std=gnu90"
16
17
+ if test "$(uname -s 2>/dev/null)" = "darwin"
18
+ then
19
+ # see discussion here https://github.com/NoiseByNorthwest/php-spx/pull/270
20
+ CFLAGS="$CFLAGS -Wno-typedef-redefinition"
21
+ fi
22
+
23
if test "$PHP_SPX_DEV" = "yes"
24
then
25
CFLAGS="$CFLAGS -g"
0 commit comments