aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl')
-rw-r--r--src/testcurl/Makefile.am4
-rw-r--r--src/testcurl/https/Makefile.am8
2 files changed, 9 insertions, 3 deletions
diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am
index 29aa2e9c..9e9d1ec5 100644
--- a/src/testcurl/Makefile.am
+++ b/src/testcurl/Makefile.am
@@ -93,9 +93,11 @@ test_get_LDADD = \
93 93
94test_quiesce_SOURCES = \ 94test_quiesce_SOURCES = \
95 test_quiesce.c 95 test_quiesce.c
96test_quiesce_CFLAGS = \
97 $(PTHREAD_CFLAGS) $(AM_CFLAGS)
96test_quiesce_LDADD = \ 98test_quiesce_LDADD = \
97 $(top_builddir)/src/microhttpd/libmicrohttpd.la \ 99 $(top_builddir)/src/microhttpd/libmicrohttpd.la \
98 @LIBCURL@ 100 $(PTHREAD_LIBS) @LIBCURL@
99 101
100test_callback_SOURCES = \ 102test_callback_SOURCES = \
101 test_callback.c 103 test_callback.c
diff --git a/src/testcurl/https/Makefile.am b/src/testcurl/https/Makefile.am
index 243d414a..7ea75200 100644
--- a/src/testcurl/https/Makefile.am
+++ b/src/testcurl/https/Makefile.am
@@ -59,10 +59,12 @@ test_tls_options_LDADD = \
59test_https_get_parallel_SOURCES = \ 59test_https_get_parallel_SOURCES = \
60 test_https_get_parallel.c \ 60 test_https_get_parallel.c \
61 tls_test_common.c 61 tls_test_common.c
62test_https_get_parallel_CFLAGS = \
63 $(PTHREAD_CFLAGS) $(AM_CFLAGS)
62test_https_get_parallel_LDADD = \ 64test_https_get_parallel_LDADD = \
63 $(top_builddir)/src/testcurl/libcurl_version_check.a \ 65 $(top_builddir)/src/testcurl/libcurl_version_check.a \
64 $(top_builddir)/src/microhttpd/libmicrohttpd.la \ 66 $(top_builddir)/src/microhttpd/libmicrohttpd.la \
65 @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ 67 $(PTHREAD_LIBS) @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@
66 68
67test_empty_response_SOURCES = \ 69test_empty_response_SOURCES = \
68 test_empty_response.c \ 70 test_empty_response.c \
@@ -75,10 +77,12 @@ test_empty_response_LDADD = \
75test_https_get_parallel_threads_SOURCES = \ 77test_https_get_parallel_threads_SOURCES = \
76 test_https_get_parallel_threads.c \ 78 test_https_get_parallel_threads.c \
77 tls_test_common.c 79 tls_test_common.c
80test_https_get_parallel_threads_CFLAGS = \
81 $(PTHREAD_CFLAGS) $(AM_CFLAGS)
78test_https_get_parallel_threads_LDADD = \ 82test_https_get_parallel_threads_LDADD = \
79 $(top_builddir)/src/testcurl/libcurl_version_check.a \ 83 $(top_builddir)/src/testcurl/libcurl_version_check.a \
80 $(top_builddir)/src/microhttpd/libmicrohttpd.la \ 84 $(top_builddir)/src/microhttpd/libmicrohttpd.la \
81 @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ 85 $(PTHREAD_LIBS) @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@
82 86
83test_tls_authentication_SOURCES = \ 87test_tls_authentication_SOURCES = \
84 test_tls_authentication.c \ 88 test_tls_authentication.c \