aboutsummaryrefslogtreecommitdiff
path: root/doc
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 /doc
parentf557e2ad5080d832598f58041c9fab2901457012 (diff)
downloadlibmicrohttpd-e657e19644a7b76412b4e22975e49c91dc0a0365.tar.gz
libmicrohttpd-e657e19644a7b76412b4e22975e49c91dc0a0365.zip
Karlson2k: fix AM_CPPFLAGS vs AM_CFLAGS usage
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/Makefile.am9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am
index 4cfc7be7..e4335985 100644
--- a/doc/examples/Makefile.am
+++ b/doc/examples/Makefile.am
@@ -6,11 +6,12 @@ endif
6 6
7AM_CPPFLAGS = \ 7AM_CPPFLAGS = \
8 $(PLIBC_INCLUDE) \ 8 $(PLIBC_INCLUDE) \
9 -I$(top_srcdir)/src/include \ 9 -I$(top_srcdir)/src/include
10 @LIBGCRYPT_CFLAGS@ 10
11AM_CFLAGS = @LIBGCRYPT_CFLAGS@
11 12
12if USE_COVERAGE 13if USE_COVERAGE
13 AM_CFLAGS = --coverage 14 AM_CFLAGS += --coverage
14endif 15endif
15 16
16# example programs 17# example programs
@@ -29,7 +30,7 @@ noinst_PROGRAMS += simplepost largepost sessions
29endif 30endif
30 31
31if HAVE_W32 32if HAVE_W32
32AM_CFLAGS = -DWINDOWS 33AM_CPPFLAGS += -DWINDOWS
33endif 34endif
34 35
35basicauthentication_SOURCES = \ 36basicauthentication_SOURCES = \