diff options
author | David Barksdale <amatus@amat.us> | 2019-08-27 14:29:17 -0500 |
---|---|---|
committer | David Barksdale <amatus@amat.us> | 2019-08-27 14:29:17 -0500 |
commit | 53fd26b7e0deef386aeb207bfc1e3f7c00a1f775 (patch) | |
tree | db4ed21ae7fb6677b7f7092f529175a76e3d4f6b /src/reclaim/Makefile.am | |
parent | ba2cae9617e32bf789001415cd787f50af8b3ce9 (diff) |
Use pkg-config to check for MHD
Diffstat (limited to 'src/reclaim/Makefile.am')
-rw-r--r-- | src/reclaim/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/reclaim/Makefile.am b/src/reclaim/Makefile.am index 6e5046437..6937b1af6 100644 --- a/src/reclaim/Makefile.am +++ b/src/reclaim/Makefile.am @@ -58,9 +58,10 @@ libgnunet_plugin_rest_reclaim_la_LIBADD = \ $(top_builddir)/src/reclaim-attribute/libgnunetreclaimattribute.la \ $(top_builddir)/src/namestore/libgnunetnamestore.la \ $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \ - $(LTLIBINTL) -ljansson -lmicrohttpd + $(LTLIBINTL) -ljansson $(MHD_LIBS) libgnunet_plugin_rest_reclaim_la_LDFLAGS = \ $(GN_PLUGIN_LDFLAGS) +libgnunet_plugin_rest_reclaim_la_CFLAGS = $(MHD_CFLAGS) $(AM_CFLAGS) libgnunet_plugin_rest_openid_connect_la_SOURCES = \ @@ -76,9 +77,10 @@ libgnunet_plugin_rest_openid_connect_la_LIBADD = \ $(top_builddir)/src/gns/libgnunetgns.la \ $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \ - $(LTLIBINTL) -ljansson -lmicrohttpd + $(LTLIBINTL) -ljansson $(MHD_LIBS) libgnunet_plugin_rest_openid_connect_la_LDFLAGS = \ $(GN_PLUGIN_LDFLAGS) +libgnunet_plugin_rest_openid_connect_la_CFLAGS = $(MHD_CFLAGS) $(AM_CFLAGS) libgnunet_plugin_gnsrecord_reclaim_la_SOURCES = \ |