diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2023-05-18 15:44:44 +0200 |
---|---|---|
committer | Christian Grothoff <grothoff@gnunet.org> | 2023-05-18 15:44:44 +0200 |
commit | fad58d12ad817be56d374e99d5a2b4c7ff9ae82c (patch) | |
tree | 4baad52b9340af931f434c06461a8be9752b8752 | |
parent | 077b6d87a760b4ecb3bd17a5771b62ff31085662 (diff) | |
download | gnunet-gtk-fad58d12ad817be56d374e99d5a2b4c7ff9ae82c.tar.gz gnunet-gtk-fad58d12ad817be56d374e99d5a2b4c7ff9ae82c.zip |
-do not build namestore if gnutls was not found
-rw-r--r-- | INSTALL | 6 | ||||
-rw-r--r-- | src/Makefile.am | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -1,8 +1,8 @@ | |||
1 | Installation Instructions | 1 | Installation 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 |
5 | Foundation, Inc. | 5 | Software 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, |
8 | are permitted in any medium without royalty provided the copyright | 8 | are permitted in any medium without royalty provided the copyright |
@@ -225,7 +225,7 @@ order to use an ANSI C compiler: | |||
225 | 225 | ||
226 | and if that doesn't work, install pre-built binaries of GCC for HP-UX. | 226 | and 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 |
229 | prerequisites, which makes it generally unusable when shipped generated | 229 | prerequisites, which makes it generally unusable when shipped generated |
230 | files such as 'configure' are involved. Use GNU 'make' instead. | 230 | files 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 |
2 | SUBDIRS = . include lib $(GNUNET_FS_APP) $(GNUNET_SETUP_APP) $(GNUNET_PEERINFO_APP) $(GNUNET_CONVERSATION_APP) statistics namestore | 2 | SUBDIRS = . include lib $(GNUNET_FS_APP) $(GNUNET_SETUP_APP) $(GNUNET_PEERINFO_APP) $(GNUNET_CONVERSATION_APP) statistics |
3 | |||
4 | if HAVE_GNUTLS | ||
5 | SUBDIRS += namestore | ||
6 | endif | ||