libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit bc260c1afe158afcda802da8c2ae73dd4e81960c
parent f5d96db320aed70f77e29cf9551a76c7cafd649e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 20 Sep 2013 08:09:31 +0000

-help buildbots not build tests if spdy is not enabled

Diffstat:
Msrc/testspdy/Makefile.am | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/testspdy/Makefile.am b/src/testspdy/Makefile.am @@ -21,14 +21,15 @@ if !HAVE_W32 PERF_GET_CONCURRENT=perf_get_concurrent endif - +if ENABLE_SPDY +if HAVE_OPENSSL check_PROGRAMS = \ - test_daemon_start_stop \ + test_daemon_start_stop \ test_daemon_start_stop_many \ test_struct_namevalue if HAVE_SPDYLAY - check_PROGRAMS += \ +check_PROGRAMS += \ test_new_connection \ test_request_response \ test_notls \ @@ -37,6 +38,8 @@ if HAVE_SPDYLAY test_session_timeout #test_requests_with_assets endif +endif +endif TESTS = $(check_PROGRAMS) @@ -109,7 +112,7 @@ test_session_timeout_LDADD = $(SPDY_LDADD) if HAVE_CURL_BINARY check_PROGRAMS += \ test_proxies - + test_proxies_SOURCES = \ test_proxies.c \ $(SPDY_SOURCES)