aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-24 19:47:44 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-24 23:15:48 +0300
commit46f67fb2927fa8059d54b469663160256158f240 (patch)
tree63c9a774055557a39d01bfd96be6271c4edd702a
parentc2fa486399f61bb3add6525980e2a32bd391e44b (diff)
downloadlibmicrohttpd-46f67fb2927fa8059d54b469663160256158f240.tar.gz
libmicrohttpd-46f67fb2927fa8059d54b469663160256158f240.zip
fixed test_postprocessor*: all files which includes "internal.h" require CFLAGS as well as CPPFLAGS for GnuTLS
-rw-r--r--src/microhttpd/Makefile.am6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 03a6b09d..9bf5acea 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -203,6 +203,8 @@ test_postprocessor_SOURCES = \
203 test_postprocessor.c 203 test_postprocessor.c
204test_postprocessor_CPPFLAGS = \ 204test_postprocessor_CPPFLAGS = \
205 $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS) 205 $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS)
206test_postprocessor_CFLAGS = \
207 $(AM_CFLAGS) $(GNUTLS_CFLAGS)
206test_postprocessor_LDADD = \ 208test_postprocessor_LDADD = \
207 $(top_builddir)/src/microhttpd/libmicrohttpd.la 209 $(top_builddir)/src/microhttpd/libmicrohttpd.la
208 210
@@ -210,6 +212,8 @@ test_postprocessor_amp_SOURCES = \
210 test_postprocessor_amp.c 212 test_postprocessor_amp.c
211test_postprocessor_amp_CPPFLAGS = \ 213test_postprocessor_amp_CPPFLAGS = \
212 $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS) 214 $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS)
215test_postprocessor_amp_CFLAGS = \
216 $(AM_CFLAGS) $(GNUTLS_CFLAGS)
213test_postprocessor_amp_LDADD = \ 217test_postprocessor_amp_LDADD = \
214 $(top_builddir)/src/microhttpd/libmicrohttpd.la 218 $(top_builddir)/src/microhttpd/libmicrohttpd.la
215 219
@@ -217,6 +221,8 @@ test_postprocessor_large_SOURCES = \
217 test_postprocessor_large.c 221 test_postprocessor_large.c
218test_postprocessor_large_CPPFLAGS = \ 222test_postprocessor_large_CPPFLAGS = \
219 $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS) 223 $(AM_CPPFLAGS) $(GNUTLS_CPPFLAGS)
224test_postprocessor_large_CFLAGS = \
225 $(AM_CFLAGS) $(GNUTLS_CFLAGS)
220test_postprocessor_large_LDADD = \ 226test_postprocessor_large_LDADD = \
221 $(top_builddir)/src/microhttpd/libmicrohttpd.la 227 $(top_builddir)/src/microhttpd/libmicrohttpd.la
222 228