aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac12
-rw-r--r--src/monkey/Makefile.am4
-rw-r--r--src/nat/Makefile.am3
3 files changed, 18 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 70d47378b..d5a4f09a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -735,7 +735,17 @@ then
735 AC_MSG_NOTICE([NOTICE: libmicrohttpd not found, http transport will not be installed.]) 735 AC_MSG_NOTICE([NOTICE: libmicrohttpd not found, http transport will not be installed.])
736fi 736fi
737 737
738AC_MSG_NOTICE([NOTICE: Database support is set to MySQL: $mysql, SQLite: $sqlite]) 738if test "x$esmtp" != "x1"
739then
740 AC_MSG_NOTICE([NOTICE: libesmtp not found, monkey will not be installed.])
741fi
742
743if test "x$ssl" != "x1"
744then
745 AC_MSG_NOTICE([NOTICE: OpenSSL not found, monkey will not be installed.])
746fi
747
748AC_MSG_NOTICE([NOTICE: Database support is set to MySQL: $mysql, SQLite: $sqlite, Postgres: $postgres])
739 749
740if test "$enable_framework_build" = "yes" 750if test "$enable_framework_build" = "yes"
741then 751then
diff --git a/src/monkey/Makefile.am b/src/monkey/Makefile.am
index b0394787f..6c8c6f9b3 100644
--- a/src/monkey/Makefile.am
+++ b/src/monkey/Makefile.am
@@ -11,6 +11,8 @@ endif
11 11
12 12
13if !MINGW 13if !MINGW
14if HAVE_ESMTP
15if HAVE_OPENSSL
14 16
15bin_PROGRAMS = \ 17bin_PROGRAMS = \
16 gnunet-monkey \ 18 gnunet-monkey \
@@ -75,4 +77,6 @@ EXTRA_DIST = \
75 $(check_SCRIPTS) 77 $(check_SCRIPTS)
76 78
77endif 79endif
80endif
81endif
78 82
diff --git a/src/nat/Makefile.am b/src/nat/Makefile.am
index 3ec124c5e..57be6832d 100644
--- a/src/nat/Makefile.am
+++ b/src/nat/Makefile.am
@@ -10,6 +10,8 @@ if USE_COVERAGE
10 AM_CFLAGS = -fprofile-arcs -ftest-coverage 10 AM_CFLAGS = -fprofile-arcs -ftest-coverage
11endif 11endif
12 12
13if !MINGW
14
13lib_LTLIBRARIES = libgnunetnat.la 15lib_LTLIBRARIES = libgnunetnat.la
14 16
15libgnunetnat_la_SOURCES = \ 17libgnunetnat_la_SOURCES = \
@@ -42,3 +44,4 @@ test_nat_LDADD = \
42 $(top_builddir)/src/nat/libgnunetnat.la \ 44 $(top_builddir)/src/nat/libgnunetnat.la \
43 $(top_builddir)/src/util/libgnunetutil.la 45 $(top_builddir)/src/util/libgnunetutil.la
44 46
47endif \ No newline at end of file