diff options
Diffstat (limited to 'src/hostlist/Makefile.am')
-rw-r--r-- | src/hostlist/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/hostlist/Makefile.am b/src/hostlist/Makefile.am index f764f2f..726251a 100644 --- a/src/hostlist/Makefile.am +++ b/src/hostlist/Makefile.am @@ -2,6 +2,8 @@ INCLUDES = -I$(top_srcdir)/src/include pkgcfgdir= $(pkgdatadir)/config.d/ +libexecdir= $(pkglibdir)/libexec/ + dist_pkgcfg_DATA = \ hostlist.conf @@ -14,8 +16,10 @@ if HAVE_MHD GN_LIBMHD = -lmicrohttpd endif -bin_PROGRAMS = \ +if HAVE_LIBCURL +libexec_PROGRAMS = \ gnunet-daemon-hostlist +endif gnunet_daemon_hostlist_SOURCES = \ gnunet-daemon-hostlist.c gnunet-daemon-hostlist.h \ @@ -36,6 +40,7 @@ gnunet_daemon_hostlist_LDADD = \ gnunet_daemon_hostlist_CPPFLAGS = \ @LIBCURL_CPPFLAGS@ +if HAVE_LIBCURL check_PROGRAMS = \ test_gnunet_daemon_hostlist \ test_gnunet_daemon_hostlist_reconnect \ @@ -49,6 +54,7 @@ TESTS = \ test_gnunet_daemon_hostlist_learning endif endif +endif test_gnunet_daemon_hostlist_SOURCES = \ test_gnunet_daemon_hostlist.c |