diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-05-24 08:55:31 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-05-24 08:55:31 +0000 |
commit | e523f648eedc51d383e63b59f7de7a2038719c06 (patch) | |
tree | 9a0f4873d4952abbb7d944c0de6ae6920aea0689 | |
parent | ebebe460d26de89de13ece691a42dd358ec28ce5 (diff) | |
download | libmicrohttpd-e523f648eedc51d383e63b59f7de7a2038719c06.tar.gz libmicrohttpd-e523f648eedc51d383e63b59f7de7a2038719c06.zip |
-check for curl for the spdy proxy
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 801d368b..2948d440 100644 --- a/src/Makefile.am +++ b/src/Makefile.am | |||
@@ -8,7 +8,10 @@ endif | |||
8 | endif | 8 | endif |
9 | if ENABLE_SPDY | 9 | if ENABLE_SPDY |
10 | if HAVE_OPENSSL | 10 | if HAVE_OPENSSL |
11 | microspdy = microspdy spdy2http | 11 | microspdy = microspdy |
12 | if HAVE_CURL | ||
13 | microspdy += spdy2http | ||
14 | endif | ||
12 | if HAVE_SPDYLAY | 15 | if HAVE_SPDYLAY |
13 | microspdy += testspdy | 16 | microspdy += testspdy |
14 | endif | 17 | endif |