syscalls: Add 'getxattr'.
[jackhill/guix/guix.git] / configure.ac
CommitLineData
af51c820
LC
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.68)
e6860b5e
LC
5AC_INIT([GNU Guix],
6 [m4_esyscmd([build-aux/git-version-gen .tarball-version])],
7 [bug-guix@gnu.org], [guix],
8 [https://www.gnu.org/software/guix/])
af51c820
LC
9AC_CONFIG_AUX_DIR([build-aux])
10
05c4e379 11AM_INIT_AUTOMAKE([1.14 gnu silent-rules subdir-objects \
a84e523c 12 color-tests parallel-tests -Woverride -Wno-portability])
af51c820 13
032c7c5f
LC
14# Enable silent rules by default.
15AM_SILENT_RULES([yes])
16
af51c820
LC
17AC_CONFIG_SRCDIR([guix.scm])
18AC_CONFIG_MACRO_DIR([m4])
19
c2033df4
LC
20dnl For the C++ code. This must be used early.
21AC_USE_SYSTEM_EXTENSIONS
22
f68b0893 23AM_GNU_GETTEXT([external])
5ac12a4f 24AM_GNU_GETTEXT_VERSION([0.18.1])
f68b0893 25
c2033df4 26GUIX_SYSTEM_TYPE
b97556d7 27GUIX_ASSERT_SUPPORTED_SYSTEM
c2033df4 28
62bc3c5b
LC
29AM_CONDITIONAL([CROSS_COMPILING], [test "x$cross_compiling" = "xyes"])
30
c2033df4
LC
31AC_ARG_WITH(store-dir,
32 AC_HELP_STRING([--with-store-dir=PATH],
834129e0 33 [file name of the store (defaults to /gnu/store)]),
c2033df4 34 [storedir="$withval"],
834129e0 35 [storedir="/gnu/store"])
c2033df4 36AC_SUBST(storedir)
73d96596 37
ee3e157d
LC
38AC_ARG_WITH([bash-completion-dir],
39 AC_HELP_STRING([--with-bash-completion-dir=DIR],
40 [name of the Bash completion directory]),
41 [bashcompletiondir="$withval"],
42 [bashcompletiondir='${sysconfdir}/bash_completion.d'])
43AC_SUBST([bashcompletiondir])
44
96dbc930
ELB
45AC_ARG_WITH([zsh-completion-dir],
46 AC_HELP_STRING([--with-zsh-completion-dir=DIR],
47 [name of the Zsh completion directory]),
48 [zshcompletiondir="$withval"],
49 [zshcompletiondir='${datadir}/zsh/site-functions'])
50AC_SUBST([zshcompletiondir])
51
b83fc85f 52AC_ARG_WITH([fish-completion-dir],
53 AC_HELP_STRING([--with-fish-completion-dir=DIR],
54 [name of the Fish completion directory]),
55 [fishcompletiondir="$withval"],
56 [fishcompletiondir='${datadir}/fish/vendor_completions.d'])
57AC_SUBST([fishcompletiondir])
58
b617a9fe
RW
59AC_ARG_WITH([selinux-policy-dir],
60 AC_HELP_STRING([--with-selinux-policy-dir=DIR],
61 [name of the SELinux policy directory]),
62 [selinux_policydir="$withval"],
63 [selinux_policydir='${datadir}/selinux/'])
64AC_SUBST([selinux_policydir])
65
834129e0
LC
66dnl Better be verbose.
67AC_MSG_CHECKING([for the store directory])
68AC_MSG_RESULT([$storedir])
69
3a61f801 70AC_ARG_ENABLE([daemon],
a4c1e99e 71 [AS_HELP_STRING([--disable-daemon], [do not build the Nix daemon (C++)])],
3a61f801 72 [guix_build_daemon="$enableval"],
c9b70836 73 [guix_build_daemon="yes"])
3a61f801 74
3f40cfde 75# Prepare a version of $localstatedir & co. that does not contain references
d8eea3d2 76# to shell variables.
6bfec3ed
LC
77guix_prefix="`eval echo $prefix | sed -e"s|NONE|/usr/local|g"`"
78guix_localstatedir="`eval echo $localstatedir | sed -e "s|NONE|$guix_prefix|g"`"
79guix_sysconfdir="`eval echo $sysconfdir | sed -e "s|NONE|$guix_prefix|g"`"
80guix_sbindir="`eval echo $sbindir | sed -e "s|NONE|$guix_prefix|g"`"
d8eea3d2 81AC_SUBST([guix_localstatedir])
3f40cfde 82AC_SUBST([guix_sysconfdir])
6bfec3ed 83AC_SUBST([guix_sbindir])
d8eea3d2 84
bb251307
LC
85GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
86AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
2178ed66 87
0e991c25
LC
88dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
89dnl Make sure they are available.
ff1cbb95 90m4_pattern_forbid([PKG_CHECK_MODULES])
0e991c25 91m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
dde49cfe
LC
92m4_pattern_forbid([^GUILE_P])
93m4_pattern_allow([^GUILE_PKG_ERRORS])
28f436a9 94m4_pattern_forbid([^GUIX_])
ff1cbb95 95
608e42e7
LC
96dnl Search for 'guile' and 'guild'. This macro defines
97dnl 'GUILE_EFFECTIVE_VERSION'.
7b2a47a7 98GUILE_PKG([3.0 2.2])
9d126aa2 99GUILE_PROGS
73f9a978 100if test "x$GUILD" = "x"; then
e688c2df
LC
101 AC_MSG_ERROR(['guild' binary not found; please check your Guile installation.])
102fi
103
104if test "x$GUILE_EFFECTIVE_VERSION" = "x2.2"; then
105 PKG_CHECK_MODULES([GUILE], [guile-2.2 >= 2.2.3])
73f9a978 106fi
af51c820 107
9437fd73 108dnl Installation directories for .scm and .go files.
301d73f6 109guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
9437fd73 110guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"
301d73f6 111AC_SUBST([guilemoduledir])
9437fd73 112AC_SUBST([guileobjectdir])
301d73f6 113
1dbe3a8d
LC
114dnl The GnuTLS bindings are necessary for substitutes over HTTPS and for 'guix
115dnl pull', among other things.
116GUILE_MODULE_AVAILABLE([have_gnutls], [(gnutls)])
117if test "x$have_gnutls" != "xyes"; then
118 AC_MSG_ERROR([The Guile bindings of GnuTLS are missing; please install them.])
119fi
120
7441f1db
LC
121dnl Check for Guile-Git.
122GUILE_MODULE_AVAILABLE([have_guile_git], [(git)])
123if test "x$have_guile_git" != "xyes"; then
124 AC_MSG_ERROR([Guile-Git is missing; please install it.])
125fi
126
6776af04 127dnl Check for Guile-JSON.
81c3dc32
LC
128GUIX_CHECK_GUILE_JSON
129if test "x$guix_cv_have_recent_guile_json" != "xyes"; then
6776af04
EB
130 AC_MSG_ERROR([Guile-JSON is missing; please install it.])
131fi
1b3e9685 132
d59e75f3
LC
133dnl Guile-Sqlite3 is used by the (guix store ...) modules.
134GUIX_CHECK_GUILE_SQLITE3
c5a2e1ff
LC
135if test "x$guix_cv_have_recent_guile_sqlite3" != "xyes"; then
136 AC_MSG_ERROR([A recent Guile-SQLite3 could not be found; please install it.])
137fi
d59e75f3 138
ca719424
LC
139GUILE_MODULE_AVAILABLE([have_guile_gcrypt], [(gcrypt hash)])
140if test "x$have_guile_gcrypt" != "xyes"; then
141 AC_MSG_ERROR([Guile-Gcrypt could not be found; please install it.])
142fi
143
d0f3a672
MO
144dnl Guile-newt is used by the graphical installer.
145GUILE_MODULE_AVAILABLE([have_guile_newt], [(newt)])
7d328e34
MO
146
147AC_ARG_ENABLE([installer],
148 AS_HELP_STRING([--enable-installer], [Build the graphical installer sources.]))
149
150AS_IF([test "x$enable_installer" = "xyes"], [
d0f3a672
MO
151if test "x$have_guile_newt" != "xyes"; then
152 AC_MSG_ERROR([Guile-newt could not be found; please install it.])
153fi
7d328e34
MO
154])
155
156AM_CONDITIONAL([ENABLE_INSTALLER],
157 [test "x$enable_installer" = "xyes"])
d0f3a672 158
9c7dd33a
LC
159dnl Make sure we have a full-fledged Guile.
160GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
161
14218251
LC
162dnl Make sure we don't suffer from the bug in 'equal?' wrt. syntax objects
163dnl found in 2.2.1. See <https://bugs.gnu.org/29903>.
164GUIX_ASSERT_SYNTAX_OBJECT_EQUAL
165
cba386c1
ML
166AC_PROG_SED
167
cd48eae5
LC
168dnl Decompressors, for use by the substituter and other modules.
169AC_PATH_PROG([GZIP], [gzip])
170AC_PATH_PROG([BZIP2], [bzip2])
171AC_PATH_PROG([XZ], [xz])
172AC_SUBST([GZIP])
173AC_SUBST([BZIP2])
174AC_SUBST([XZ])
175
af51c820 176AC_ARG_WITH([nix-prefix],
bb0a70e1
LC
177 [AS_HELP_STRING([--with-nix-prefix=DIR],
178 [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
af51c820
LC
179 [case "$withval" in
180 yes|no) ;;
437e0729
LC
181 *)
182 NIX_PREFIX="$withval"
183 PATH="$NIX_PREFIX/bin:$PATH"; export PATH
184 AC_SUBST([NIX_PREFIX])
185 ;;
af51c820
LC
186 esac],
187 [])
188
af51c820 189AC_PATH_PROG([NIX_HASH], [nix-hash])
e8cb9c01 190if test "x$guix_build_daemon$NIX_HASH" = "xno"; then
af51c820
LC
191 AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
192fi
193
194AC_ARG_WITH([nixpkgs],
bb0a70e1
LC
195 [AS_HELP_STRING([--with-nixpkgs=DIR],
196 [search for Nixpkgs in DIR (for testing purposes only)])],
af51c820
LC
197 [case "$withval" in
198 yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
199 *) NIXPKGS="$withval";;
200 esac],
201 [])
202
e76bdf8b 203AC_MSG_CHECKING([for Nixpkgs source tree])
af51c820 204if test -f "$NIXPKGS/default.nix"; then
af51c820
LC
205 AC_MSG_RESULT([$NIXPKGS])
206 AC_SUBST([NIXPKGS])
207else
e76bdf8b 208 AC_MSG_RESULT([not found])
af51c820
LC
209fi
210
dd01fecd
LC
211LIBGCRYPT_LIBDIR="no"
212LIBGCRYPT_PREFIX="no"
213
3a310cc0
LC
214AC_ARG_WITH([libgcrypt-prefix],
215 [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
216 [case "$withval" in
217 yes|no)
3a310cc0
LC
218 ;;
219 *)
d388c2c4 220 LIBGCRYPT_PREFIX="$withval"
14af289e 221 LIBGCRYPT_LIBDIR="$withval/lib"
3a310cc0 222 ;;
dd01fecd 223 esac])
3a310cc0 224
14af289e
LC
225AC_ARG_WITH([libgcrypt-libdir],
226 [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
227 [search for GNU libgcrypt's shared library in DIR])],
228 [case "$withval" in
229 yes|no)
14af289e
LC
230 LIBGCRYPT_LIBDIR="no"
231 ;;
232 *)
14af289e
LC
233 LIBGCRYPT_LIBDIR="$withval"
234 ;;
dd01fecd
LC
235 esac])
236
237dnl If none of the --with-libgcrypt-* options was used, try to determine the
ca719424 238dnl the library directory.
dd01fecd
LC
239case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
240 xnono)
241 GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
dd01fecd
LC
242 ;;
243esac
14af289e 244
d388c2c4 245AC_SUBST([LIBGCRYPT_PREFIX])
14af289e 246AC_SUBST([LIBGCRYPT_LIBDIR])
d388c2c4 247
72153902
LC
248dnl Library name of zlib suitable for 'dynamic-link'.
249GUIX_LIBZ_LIBDIR([libz_libdir])
250if test "x$libz_libdir" = "x"; then
251 LIBZ="libz"
252else
253 LIBZ="$libz_libdir/libz"
254fi
255AC_MSG_CHECKING([for zlib's shared library name])
256AC_MSG_RESULT([$LIBZ])
257AC_SUBST([LIBZ])
258
fea338c6
PN
259dnl Library name of lzlib suitable for 'dynamic-link'.
260GUIX_LIBLZ_FILE_NAME([LIBLZ])
261if test "x$LIBLZ" = "x"; then
262 LIBLZ="liblz"
263else
264 # Strip the .so or .so.1 extension since that's what 'dynamic-link' expects.
265 LIBLZ="`echo $LIBLZ | sed -es'/\.so\(\.[[0-9.]]\+\)\?//g'`"
266fi
267AC_SUBST([LIBLZ])
268
987a29ba
LC
269dnl Check for Guile-SSH, for the (guix ssh) module.
270GUIX_CHECK_GUILE_SSH
271AM_CONDITIONAL([HAVE_GUILE_SSH],
272 [test "x$guix_cv_have_recent_guile_ssh" = "xyes"])
273
c2033df4
LC
274AC_CACHE_SAVE
275
276m4_include([config-daemon.ac])
3a310cc0 277
cb9e50f6 278dnl `dot' (from the Graphviz package) is only needed for maintainers.
8c01b9d0 279dnl See `Building from Git' in the manual for more info.
cb9e50f6
LC
280AM_MISSING_PROG([DOT], [dot])
281
52eca736
LC
282dnl Manual pages.
283AM_MISSING_PROG([HELP2MAN], [help2man])
284
b9fe8fd6
JL
285dnl Documentation translation.
286AM_MISSING_PROG([PO4A_TRANSLATE], [po4a-translate])
287AM_MISSING_PROG([PO4A_UPDATEPO], [po4a-updatepo])
288
c8364ebc 289dnl Emacs (optional), for 'etc/indent-code.el'.
290AC_PATH_PROG([EMACS], [emacs])
291if test "x$EMACS" = x; then
292 AC_MSG_WARN([Please install GNU Emacs to use etc/indent-code.el.])
293else
294 AC_SUBST([EMACS])
295 AC_CONFIG_FILES([etc/indent-code.el], [chmod +x etc/indent-code.el])
296fi
7bb2b10c 297
d480ed7e
LC
298case "$storedir" in
299 /gnu/store)
300 ;;
301 *)
302 AC_MSG_WARN([Using a store directory other than '/gnu/store' will prevent you])
303 AC_MSG_WARN([from downloading substitutes from gnu.org.])
304 ;;
305esac
306
14a1c319 307AC_CONFIG_FILES([Makefile
ef1a9bb7 308 po/guix/Makefile.in
ee764179 309 po/packages/Makefile.in
b617a9fe
RW
310 etc/guix-daemon.cil
311 guix/config.scm])
8dc2ecfc 312
a1097caa
ML
313AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
314AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
315 [chmod +x pre-inst-env])
af51c820
LC
316
317AC_OUTPUT