aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2014-02-19 08:52:25 +0000
committerLRN <lrn1986@gmail.com>2014-02-19 08:52:25 +0000
commit9fa6946adf02b03567e4a8500c9611b6860d5748 (patch)
tree5f761c9a4f60fdfff8b30089f3b2ae6652d9e136
parent8ac6b1fb18250371bf7dd5357b76227f8df07fe8 (diff)
downloadlibmicrohttpd-9fa6946adf02b03567e4a8500c9611b6860d5748.tar.gz
libmicrohttpd-9fa6946adf02b03567e4a8500c9611b6860d5748.zip
More typo fixes and proper convenience lib makefile rules
-rw-r--r--src/microhttpd/Makefile.am6
-rw-r--r--src/platform/Makefile.am8
-rw-r--r--src/testcurl/Makefile.am2
3 files changed, 9 insertions, 7 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 64870fa2..65ced4c4 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -22,8 +22,10 @@ libmicrohttpd_la_CPPFLAGS = \
22libmicrohttpd_la_LDFLAGS = \ 22libmicrohttpd_la_LDFLAGS = \
23 $(MHD_LIB_LDFLAGS) \ 23 $(MHD_LIB_LDFLAGS) \
24 -version-info @LIB_VERSION_CURRENT@:@LIB_VERSION_REVISION@:@LIB_VERSION_AGE@ 24 -version-info @LIB_VERSION_CURRENT@:@LIB_VERSION_REVISION@:@LIB_VERSION_AGE@
25libmicrohttpd_la_LIBADD =
26
25if HAVE_W32 27if HAVE_W32
26libmicrohttpd_LDADD = \ 28libmicrohttpd_la_LIBADD += \
27 $(top_builddir)/src/platform/libmicrohttpd_w32.la 29 $(top_builddir)/src/platform/libmicrohttpd_w32.la
28endif 30endif
29 31
@@ -56,7 +58,7 @@ endif
56if ENABLE_HTTPS 58if ENABLE_HTTPS
57libmicrohttpd_la_SOURCES += \ 59libmicrohttpd_la_SOURCES += \
58 connection_https.c connection_https.h 60 connection_https.c connection_https.h
59libmicrohttpd_la_LIBADD = -lgnutls @LIBGCRYPT_LIBS@ 61libmicrohttpd_la_LIBADD += -lgnutls @LIBGCRYPT_LIBS@
60endif 62endif
61 63
62 64
diff --git a/src/platform/Makefile.am b/src/platform/Makefile.am
index e1cdffec..c79e4fc2 100644
--- a/src/platform/Makefile.am
+++ b/src/platform/Makefile.am
@@ -10,12 +10,12 @@ if USE_COVERAGE
10endif 10endif
11 11
12if HAVE_W32 12if HAVE_W32
13lib_LIBRARIES = \ 13noinst_LTLIBRARIES = \
14 libmicrohttpd_w32.a 14 libmicrohttpd_w32.la
15libmicrohttpd_w32_a_CPPFLAGS = \ 15libmicrohttpd_w32_la_CPPFLAGS = \
16 $(AM_CPPFLAGS) \ 16 $(AM_CPPFLAGS) \
17 -DBUILDING_MHD_LIB=1 17 -DBUILDING_MHD_LIB=1
18libmicrohttpd_w32_a_SOURCES = \ 18libmicrohttpd_w32_la_SOURCES = \
19 w32functions.c 19 w32functions.c
20endif 20endif
21 21
diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am
index 892ffceb..29aa2e9c 100644
--- a/src/testcurl/Makefile.am
+++ b/src/testcurl/Makefile.am
@@ -135,7 +135,7 @@ test_get_sendfile_LDADD = \
135 $(top_builddir)/src/microhttpd/libmicrohttpd.la \ 135 $(top_builddir)/src/microhttpd/libmicrohttpd.la \
136 @LIBCURL@ 136 @LIBCURL@
137if HAVE_W32 137if HAVE_W32
138test_get_sendfile_LDADD += 138test_get_sendfile_LDADD += \
139 $(top_builddir)/src/platform/libmicrohttpd_w32.la 139 $(top_builddir)/src/platform/libmicrohttpd_w32.la
140endif 140endif
141 141