aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-05-21 12:35:28 +0000
committerChristian Grothoff <christian@grothoff.org>2013-05-21 12:35:28 +0000
commit05d1a633b17b530fd95b20b11f08685d1c91a1ce (patch)
tree54bd5c0b515a65b5c552d25408dcc8ee02385d32 /src/Makefile.am
parentcfea15fe53e1d84d38de88651f31122de6369143 (diff)
downloadlibmicrohttpd-05d1a633b17b530fd95b20b11f08685d1c91a1ce.tar.gz
libmicrohttpd-05d1a633b17b530fd95b20b11f08685d1c91a1ce.zip
improving build system to tolerate missing libraries for libmicrospdy
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index dfd93abe..b26045f1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -7,8 +7,12 @@ endif
7endif 7endif
8endif 8endif
9if ENABLE_SPDY 9if ENABLE_SPDY
10# fixme: should test for spdylay before building testspdy! 10if HAVE_OPENSSL
11microspdy = microspdy spdy2http testspdy 11microspdy = microspdy spdy2http
12if HAVE_SPDYLAY
13microspdy += testspdy
14endif
15endif
12endif 16endif
13 17
14SUBDIRS = include microhttpd $(microspdy) examples $(curltests) $(zzuftests) . 18SUBDIRS = include microhttpd $(microspdy) examples $(curltests) $(zzuftests) .