diff options
author | Adam Chlipala <adam@chlipala.net> | 2014-02-07 18:34:17 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2014-02-07 18:34:17 -0500 |
commit | 9d54ae0acdcafa014d7217c712f2ee3530ed7635 (patch) | |
tree | 1d72e8c82d52b81f4cbea5986ca2510ee36bffdf /src | |
parent | 84d1243b0f9db53c9a25ee86e929ff7c6ea7f4f4 (diff) |
Turn off GCC's fancy %n checking, because the performance cost is too high
Diffstat (limited to 'src')
-rw-r--r-- | src/c/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/Makefile.am b/src/c/Makefile.am index 8ed374f6..d117d018 100644 --- a/src/c/Makefile.am +++ b/src/c/Makefile.am @@ -7,7 +7,7 @@ liburweb_fastcgi_la_SOURCES = fastcgi.c fastcgi.h liburweb_static_la_SOURCES = static.c AM_CPPFLAGS = -I$(srcdir)/../../include/urweb $(OPENSSL_INCLUDES) -AM_CFLAGS = -Wimplicit -Wall -Werror -Wno-format-security -Wno-deprecated-declarations $(PTHREAD_CFLAGS) +AM_CFLAGS = -Wimplicit -Wall -Werror -Wno-format-security -Wno-deprecated-declarations -U_FORTIFY_SOURCE $(PTHREAD_CFLAGS) liburweb_la_LDFLAGS = $(AM_LDFLAGS) $(OPENSSL_LDFLAGS) liburweb_la_LIBADD = $(PTHREAD_LIBS) -lm $(OPENSSL_LIBS) liburweb_http_la_LIBADD = liburweb.la |