aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-02-15 08:07:11 +0100
committerChristian Grothoff <christian@grothoff.org>2018-02-15 08:07:11 +0100
commit0ad862d39957b4ad107314d19ff3ac93d5ecbf07 (patch)
treeb5ede085ba9bc770310e9d3c1ceb7bfee0bcedf6
parentf4355ac34bb1fad42ccb650038bddddb65d70443 (diff)
downloadlibmicrohttpd-0ad862d39957b4ad107314d19ff3ac93d5ecbf07.tar.gz
libmicrohttpd-0ad862d39957b4ad107314d19ff3ac93d5ecbf07.zip
notes on required build systems fixes
-rw-r--r--src/lib/Makefile.am4
-rw-r--r--src/lib/init.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index a1241cc8..87208335 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -110,9 +110,9 @@ libmicrohttpd_la_CFLAGS = \
110libmicrohttpd_la_LDFLAGS = \ 110libmicrohttpd_la_LDFLAGS = \
111 $(MHD_LIB_LDFLAGS) \ 111 $(MHD_LIB_LDFLAGS) \
112 $(W32_MHD_LIB_LDFLAGS) \ 112 $(W32_MHD_LIB_LDFLAGS) \
113 -version-info @LIB_VERSION_CURRENT@:@LIB_VERSION_REVISION@:@LIB_VERSION_AGE@ 113 -version-info 666:0:0 # FIXME: fix once closer to release...
114libmicrohttpd_la_LIBADD = \ 114libmicrohttpd_la_LIBADD = \
115 $(MHD_LIBDEPS) 115 $(MHD_LIBDEPS) # FIXME: should separate out GNUTLS_LIBS/GCRYPT here!
116 116
117if HAVE_W32 117if HAVE_W32
118MHD_DLL_RES_SRC = microhttpd_dll_res.rc 118MHD_DLL_RES_SRC = microhttpd_dll_res.rc
diff --git a/src/lib/init.c b/src/lib/init.c
index cea006e8..8ca5cd28 100644
--- a/src/lib/init.c
+++ b/src/lib/init.c
@@ -21,6 +21,9 @@
21 * @file lib/init.c 21 * @file lib/init.c
22 * @brief initialization routines 22 * @brief initialization routines
23 * @author Christian Grothoff 23 * @author Christian Grothoff
24 *
25 * TODO: most of this is only required for gcrypt/GNUtls,
26 * should probably be moved to TLS plugin!
24 */ 27 */
25#include "internal.h" 28#include "internal.h"
26#include "init.h" 29#include "init.h"