diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-09-30 18:02:53 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-09-30 18:19:31 +0200 |
commit | fb24d7eeb47e6caeef7b4ce62a1c35130d42f67f (patch) | |
tree | ab18d1dc0bf05d05c6e283165b963f01681bd358 /configure.ac | |
parent | 9bc6a6bd7b0ddb12cbafdd6d3b70fb6b10c0d2ba (diff) | |
parent | a92bf4af66f8b5a2e6bc28baa6670065ce76daf2 (diff) |
Merge #8813: bitcoind: Daemonize using daemon(3)
a92bf4a bitcoind: Daemonize using daemon(3) (Matthew King)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 97f44f269b..9ce10b7454 100644 --- a/configure.ac +++ b/configure.ac @@ -509,6 +509,9 @@ AC_SEARCH_LIBS([inet_pton], [nsl resolv], [AC_DEFINE(HAVE_INET_PTON, 1, [Define AC_CHECK_DECLS([strnlen]) +# Check for daemon(3), unrelated to --with-daemon (although used by it) +AC_CHECK_DECLS([daemon]) + AC_CHECK_DECLS([le16toh, le32toh, le64toh, htole16, htole32, htole64, be16toh, be32toh, be64toh, htobe16, htobe32, htobe64],,, [#if HAVE_ENDIAN_H #include <endian.h> |