aboutsummaryrefslogtreecommitdiff
path: root/src/microspdy
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-02-18 07:09:20 +0000
committerChristian Grothoff <christian@grothoff.org>2014-02-18 07:09:20 +0000
commite657e19644a7b76412b4e22975e49c91dc0a0365 (patch)
treea72990dd716a7b15b4f25bc22ae615c54bba3f7b /src/microspdy
parentf557e2ad5080d832598f58041c9fab2901457012 (diff)
downloadlibmicrohttpd-e657e19644a7b76412b4e22975e49c91dc0a0365.tar.gz
libmicrohttpd-e657e19644a7b76412b4e22975e49c91dc0a0365.zip
Karlson2k: fix AM_CPPFLAGS vs AM_CFLAGS usage
Diffstat (limited to 'src/microspdy')
-rw-r--r--src/microspdy/Makefile.am7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/microspdy/Makefile.am b/src/microspdy/Makefile.am
index 52929ee2..1af67a0d 100644
--- a/src/microspdy/Makefile.am
+++ b/src/microspdy/Makefile.am
@@ -5,8 +5,9 @@ endif
5AM_CPPFLAGS = \ 5AM_CPPFLAGS = \
6 $(PLIBC_INCLUDE) \ 6 $(PLIBC_INCLUDE) \
7 -I$(top_srcdir)/src/include \ 7 -I$(top_srcdir)/src/include \
8 -I$(top_srcdir)/src/microspdy \ 8 -I$(top_srcdir)/src/microspdy
9 $(HIDDEN_VISIBILITY_CFLAGS) 9
10AM_CFLAGS = $(HIDDEN_VISIBILITY_CFLAGS)
10 11
11 12
12lib_LTLIBRARIES = \ 13lib_LTLIBRARIES = \
@@ -38,5 +39,5 @@ libmicrospdy_la_CFLAGS = -Wextra \
38 39
39 40
40if USE_COVERAGE 41if USE_COVERAGE
41 AM_CFLAGS = --coverage 42 AM_CFLAGS += --coverage
42endif 43endif