changeset 1965:126d24ef6678

Turn off GCC's fancy %n checking, because the performance cost is too high
author Adam Chlipala <adam@chlipala.net>
date Fri, 07 Feb 2014 18:34:17 -0500
parents 072656016dfa
children fca98a6cbe23
files src/c/Makefile.am
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/c/Makefile.am	Wed Jan 29 18:19:25 2014 -0500
+++ b/src/c/Makefile.am	Fri Feb 07 18:34:17 2014 -0500
@@ -7,7 +7,7 @@
 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