aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-05-18 15:44:44 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-05-18 15:44:44 +0200
commitfad58d12ad817be56d374e99d5a2b4c7ff9ae82c (patch)
tree4baad52b9340af931f434c06461a8be9752b8752
parent077b6d87a760b4ecb3bd17a5771b62ff31085662 (diff)
downloadgnunet-gtk-fad58d12ad817be56d374e99d5a2b4c7ff9ae82c.tar.gz
gnunet-gtk-fad58d12ad817be56d374e99d5a2b4c7ff9ae82c.zip
-do not build namestore if gnutls was not found
-rw-r--r--INSTALL6
-rw-r--r--src/Makefile.am6
2 files changed, 8 insertions, 4 deletions
diff --git a/INSTALL b/INSTALL
index 8865734f..e82fd21d 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,8 +1,8 @@
1Installation Instructions 1Installation Instructions
2************************* 2*************************
3 3
4 Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software 4 Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
5Foundation, Inc. 5Software Foundation, Inc.
6 6
7 Copying and distribution of this file, with or without modification, 7 Copying and distribution of this file, with or without modification,
8are permitted in any medium without royalty provided the copyright 8are permitted in any medium without royalty provided the copyright
@@ -225,7 +225,7 @@ order to use an ANSI C compiler:
225 225
226and if that doesn't work, install pre-built binaries of GCC for HP-UX. 226and if that doesn't work, install pre-built binaries of GCC for HP-UX.
227 227
228 HP-UX 'make' updates targets which have the same time stamps as their 228 HP-UX 'make' updates targets which have the same timestamps as their
229prerequisites, which makes it generally unusable when shipped generated 229prerequisites, which makes it generally unusable when shipped generated
230files such as 'configure' are involved. Use GNU 'make' instead. 230files such as 'configure' are involved. Use GNU 'make' instead.
231 231
diff --git a/src/Makefile.am b/src/Makefile.am
index fea6f370..2b928394 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,2 +1,6 @@
1# This Makefile.am is in the public domain 1# This Makefile.am is in the public domain
2SUBDIRS = . include lib $(GNUNET_FS_APP) $(GNUNET_SETUP_APP) $(GNUNET_PEERINFO_APP) $(GNUNET_CONVERSATION_APP) statistics namestore 2SUBDIRS = . include lib $(GNUNET_FS_APP) $(GNUNET_SETUP_APP) $(GNUNET_PEERINFO_APP) $(GNUNET_CONVERSATION_APP) statistics
3
4if HAVE_GNUTLS
5SUBDIRS += namestore
6endif