commit 0ad862d39957b4ad107314d19ff3ac93d5ecbf07 parent f4355ac34bb1fad42ccb650038bddddb65d70443 Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 15 Feb 2018 08:07:11 +0100 notes on required build systems fixes Diffstat:
| M | src/lib/Makefile.am | | | 4 | ++-- |
| M | src/lib/init.c | | | 3 | +++ |
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am @@ -110,9 +110,9 @@ libmicrohttpd_la_CFLAGS = \ libmicrohttpd_la_LDFLAGS = \ $(MHD_LIB_LDFLAGS) \ $(W32_MHD_LIB_LDFLAGS) \ - -version-info @LIB_VERSION_CURRENT@:@LIB_VERSION_REVISION@:@LIB_VERSION_AGE@ + -version-info 666:0:0 # FIXME: fix once closer to release... libmicrohttpd_la_LIBADD = \ - $(MHD_LIBDEPS) + $(MHD_LIBDEPS) # FIXME: should separate out GNUTLS_LIBS/GCRYPT here! if HAVE_W32 MHD_DLL_RES_SRC = microhttpd_dll_res.rc diff --git a/src/lib/init.c b/src/lib/init.c @@ -21,6 +21,9 @@ * @file lib/init.c * @brief initialization routines * @author Christian Grothoff + * + * TODO: most of this is only required for gcrypt/GNUtls, + * should probably be moved to TLS plugin! */ #include "internal.h" #include "init.h"