daemon: Add gzip log compression.
[jackhill/guix/guix.git] / config-daemon.ac
CommitLineData
c2033df4
LC
1dnl -*- Autoconf -*- fragment for the C++ daemon.
2
c2033df4
LC
3AC_MSG_CHECKING([whether to build daemon])
4AC_MSG_RESULT([$guix_build_daemon])
5
6dnl C++ environment. This macro must be used unconditionnaly.
7AC_PROG_CXX
1ca0f20a 8AM_PROG_AR
368d08f7 9AC_LANG([C++])
c2033df4
LC
10
11if test "x$guix_build_daemon" = "xyes"; then
12
368d08f7
LC
13 GUIX_ASSERT_CXX11
14
c2033df4
LC
15 AC_PROG_RANLIB
16 AC_CONFIG_HEADER([nix/config.h])
17
18 dnl Use 64-bit file system calls so that we can support files > 2 GiB.
19 AC_SYS_LARGEFILE
20
29a68668
LC
21 dnl Look for zlib, a required dependency.
22 AC_CHECK_LIB([z], [gzdopen], [true],
23 [AC_MSG_ERROR([Guix requires zlib. See http://www.zlib.net/.])])
24 AC_CHECK_HEADERS([zlib.h], [true],
25 [AC_MSG_ERROR([Guix requires zlib. See http://www.zlib.net/.])])
26
c2033df4
LC
27 dnl Look for libbz2, a required dependency.
28 AC_CHECK_LIB([bz2], [BZ2_bzWriteOpen], [true],
29 [AC_MSG_ERROR([Guix requires libbz2, which is part of bzip2. See http://www.bzip.org/.])])
30 AC_CHECK_HEADERS([bzlib.h], [true],
31 [AC_MSG_ERROR([Guix requires libbz2, which is part of bzip2. See http://www.bzip.org/.])])
32
33 dnl Look for SQLite, a required dependency.
34 PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= 3.6.19])
35
36 AC_DEFINE([NIX_VERSION], ["0.0.0"], [Fake Nix version number.])
ca8dbb7d 37 AC_DEFINE_UNQUOTED([SYSTEM], ["$guix_system"],
c2033df4
LC
38 [Guix host system type--i.e., platform and OS kernel tuple.])
39
40 case "$LIBGCRYPT_PREFIX" in
41 no)
42 LIBGCRYPT_CFLAGS=""
c2033df4
LC
43 ;;
44 *)
45 LIBGCRYPT_CFLAGS="-I$LIBGCRYPT_PREFIX/include"
c2033df4
LC
46 ;;
47 esac
14af289e
LC
48
49 case "$LIBGCRYPT_LIBDIR" in
50 no)
51 LIBGCRYPT_LIBS="-lgcrypt"
52 ;;
ca34fc31 53 *)
14af289e
LC
54 LIBGCRYPT_LIBS="-L$LIBGCRYPT_LIBDIR -lgcrypt"
55 ;;
56 esac
57
c2033df4
LC
58 AC_SUBST([LIBGCRYPT_CFLAGS])
59 AC_SUBST([LIBGCRYPT_LIBS])
60
61 save_CFLAGS="$CFLAGS"
62 save_LDFLAGS="$LDFLAGS"
63 CFLAGS="$CFLAGS $LIBGCRYPT_CFLAGS"
64 LDFLAGS="$LDFLAGS $LIBGCRYPT_LDFLAGS"
65
66 have_gcrypt=yes
67 AC_CHECK_LIB([gcrypt], [gcry_md_open], [:], [have_gcrypt=no])
68 AC_CHECK_HEADER([gcrypt.h], [:], [have_gcrypt=no])
69 if test "x$have_gcrypt" != "xyes"; then
70 AC_MSG_ERROR([GNU libgcrypt not found; please install it.])
71 fi
72
73 CFLAGS="$save_CFLAGS"
74 LDFLAGS="$save_LDFLAGS"
2606bbcf
LC
75
76 dnl Chroot support.
77 AC_CHECK_FUNCS([chroot unshare])
54c260e6 78 AC_CHECK_HEADERS([sched.h sys/param.h sys/mount.h sys/syscall.h])
2606bbcf 79
3b9855f4
LC
80 if test "x$ac_cv_func_chroot" != "xyes"; then
81 AC_MSG_ERROR(['chroot' function missing, bailing out])
82 fi
83
c0412fed
LC
84 dnl lutimes and lchown: used when canonicalizing store items.
85 dnl posix_fallocate: used when extracting archives.
86 dnl vfork: to speed up spawning of helper programs.
3af2d27e
LC
87 dnl `--> now disabled because of unpredictable behavior:
88 dnl see <http://lists.gnu.org/archive/html/guix-devel/2014-05/msg00036.html>
89 dnl and Nix commit f794465c (Nov. 2012).
c0412fed
LC
90 dnl sched_setaffinity: to improve RPC locality.
91 dnl statvfs: to detect disk-full conditions.
92 dnl strsignal: for error reporting.
3af2d27e 93 AC_CHECK_FUNCS([lutimes lchown posix_fallocate sched_setaffinity \
c0412fed 94 statvfs nanosleep strsignal])
2606bbcf
LC
95
96 dnl Check whether the store optimiser can optimise symlinks.
97 AC_MSG_CHECKING([whether it is possible to create a link to a symlink])
98 ln -s bla tmp_link
99 if ln tmp_link tmp_link2 2> /dev/null; then
100 AC_MSG_RESULT(yes)
101 AC_DEFINE(CAN_LINK_SYMLINK, 1, [Whether link() works on symlinks.])
102 else
103 AC_MSG_RESULT(no)
104 fi
105 rm -f tmp_link tmp_link2
106
107 dnl Check for <locale>.
108 AC_LANG_PUSH(C++)
109 AC_CHECK_HEADERS([locale])
110 AC_LANG_POP(C++)
111
112
113 dnl Check whether we have the `personality' syscall, which allows us
114 dnl to do i686-linux builds on x86_64-linux machines.
115 AC_CHECK_HEADERS([sys/personality.h])
116
117 dnl Check for <linux/fs.h> (for immutable file support).
118 AC_CHECK_HEADERS([linux/fs.h])
f5c82e15 119
df061d07
LC
120 dnl Determine the appropriate default list of substitute URLs.
121 GUILE_MODULE_AVAILABLE([have_gnutls], [(gnutls)])
122 if test "x$have_gnutls" = "xyes"; then
f82ce8f6 123 guix_substitute_urls="https://mirror.hydra.gnu.org"
df061d07
LC
124 else
125 AC_MSG_WARN([GnuTLS is missing, substitutes will be downloaded in the clear])
f82ce8f6 126 guix_substitute_urls="http://mirror.hydra.gnu.org"
df061d07
LC
127 fi
128 AC_MSG_CHECKING([for default substitute URLs])
129 AC_MSG_RESULT([$guix_substitute_urls])
130
131 AC_DEFINE_UNQUOTED([GUIX_SUBSTITUTE_URLS], ["$guix_substitute_urls"],
132 [Default list of substitute URLs used by 'guix-daemon'.])
133
49e6291a
LC
134 dnl Check whether the 'offload' build hook can be built (uses
135 dnl 'restore-file-set', which requires unbuffered custom binary input
136 dnl ports from Guile >= 2.0.10.)
137 GUIX_CHECK_UNBUFFERED_CBIP
49e6291a 138
21531add
LC
139 dnl Check for Guile-SSH, which is required by 'guix offload'.
140 GUIX_CHECK_GUILE_SSH
141
142 case "x$ac_cv_guix_cbips_support_setvbuf$guix_cv_have_recent_guile_ssh" in
143 xyesyes)
144 guix_build_daemon_offload="yes"
145 AC_DEFINE([HAVE_DAEMON_OFFLOAD_HOOK], [1],
146 [Define if the daemon's 'offload' build hook is being built (requires Guile-SSH).])
147 ;;
148 *)
149 guix_build_daemon_offload="no"
150 ;;
151 esac
49e6291a 152
69cfce50 153 dnl Temporary directory used to store the daemon's data.
2178ed66
LC
154 GUIX_TEST_ROOT_DIRECTORY
155 GUIX_TEST_ROOT="$ac_cv_guix_test_root"
69cfce50
LC
156 AC_SUBST([GUIX_TEST_ROOT])
157
ef5f5c86
LC
158 GUIX_CHECK_LOCALSTATEDIR
159
e8b3afeb
LC
160 AC_CONFIG_FILES([nix/scripts/list-runtime-roots],
161 [chmod +x nix/scripts/list-runtime-roots])
94d92c77
LC
162 AC_CONFIG_FILES([nix/scripts/download],
163 [chmod +x nix/scripts/download])
2c74fde0
LC
164 AC_CONFIG_FILES([nix/scripts/substitute],
165 [chmod +x nix/scripts/substitute])
526382ff
LC
166 AC_CONFIG_FILES([nix/scripts/guix-authenticate],
167 [chmod +x nix/scripts/guix-authenticate])
49e6291a
LC
168 AC_CONFIG_FILES([nix/scripts/offload],
169 [chmod +x nix/scripts/offload])
c2033df4
LC
170fi
171
172AM_CONDITIONAL([BUILD_DAEMON], [test "x$guix_build_daemon" = "xyes"])
49e6291a
LC
173AM_CONDITIONAL([BUILD_DAEMON_OFFLOAD], \
174 [test "x$guix_build_daemon" = "xyes" \
175 && test "x$guix_build_daemon_offload" = "xyes"])