Merge branch 'master' into staging
[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
8aab64fc 11AM_INIT_AUTOMAKE([1.12 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
LC
28
29AC_ARG_WITH(store-dir,
30 AC_HELP_STRING([--with-store-dir=PATH],
834129e0 31 [file name of the store (defaults to /gnu/store)]),
c2033df4 32 [storedir="$withval"],
834129e0 33 [storedir="/gnu/store"])
c2033df4 34AC_SUBST(storedir)
73d96596 35
ee3e157d
LC
36AC_ARG_WITH([bash-completion-dir],
37 AC_HELP_STRING([--with-bash-completion-dir=DIR],
38 [name of the Bash completion directory]),
39 [bashcompletiondir="$withval"],
40 [bashcompletiondir='${sysconfdir}/bash_completion.d'])
41AC_SUBST([bashcompletiondir])
42
96dbc930
ELB
43AC_ARG_WITH([zsh-completion-dir],
44 AC_HELP_STRING([--with-zsh-completion-dir=DIR],
45 [name of the Zsh completion directory]),
46 [zshcompletiondir="$withval"],
47 [zshcompletiondir='${datadir}/zsh/site-functions'])
48AC_SUBST([zshcompletiondir])
49
834129e0
LC
50dnl Better be verbose.
51AC_MSG_CHECKING([for the store directory])
52AC_MSG_RESULT([$storedir])
53
3a61f801 54AC_ARG_ENABLE([daemon],
a4c1e99e 55 [AS_HELP_STRING([--disable-daemon], [do not build the Nix daemon (C++)])],
3a61f801 56 [guix_build_daemon="$enableval"],
c9b70836 57 [guix_build_daemon="yes"])
3a61f801 58
3f40cfde 59# Prepare a version of $localstatedir & co. that does not contain references
d8eea3d2 60# to shell variables.
6bfec3ed
LC
61guix_prefix="`eval echo $prefix | sed -e"s|NONE|/usr/local|g"`"
62guix_localstatedir="`eval echo $localstatedir | sed -e "s|NONE|$guix_prefix|g"`"
63guix_sysconfdir="`eval echo $sysconfdir | sed -e "s|NONE|$guix_prefix|g"`"
64guix_sbindir="`eval echo $sbindir | sed -e "s|NONE|$guix_prefix|g"`"
d8eea3d2 65AC_SUBST([guix_localstatedir])
3f40cfde 66AC_SUBST([guix_sysconfdir])
6bfec3ed 67AC_SUBST([guix_sbindir])
d8eea3d2 68
bb251307
LC
69GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
70AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
2178ed66 71
0e991c25
LC
72dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
73dnl Make sure they are available.
ff1cbb95 74m4_pattern_forbid([PKG_CHECK_MODULES])
0e991c25 75m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
9d126aa2 76m4_pattern_forbid([^GUILE_P$])
ff1cbb95 77
608e42e7
LC
78dnl Search for 'guile' and 'guild'. This macro defines
79dnl 'GUILE_EFFECTIVE_VERSION'.
80GUILE_PKG([2.2 2.0])
9d126aa2 81GUILE_PROGS
73f9a978
CN
82if test "x$GUILD" = "x"; then
83 AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.])
84fi
af51c820 85
9d126aa2 86if test "x$GUILE_EFFECTIVE_VERSION" = "x2.0"; then
36626c55 87 PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.9])
9d126aa2
LC
88fi
89
9437fd73 90dnl Installation directories for .scm and .go files.
301d73f6 91guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
9437fd73 92guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"
301d73f6 93AC_SUBST([guilemoduledir])
9437fd73 94AC_SUBST([guileobjectdir])
301d73f6 95
1dbe3a8d
LC
96dnl The GnuTLS bindings are necessary for substitutes over HTTPS and for 'guix
97dnl pull', among other things.
98GUILE_MODULE_AVAILABLE([have_gnutls], [(gnutls)])
99if test "x$have_gnutls" != "xyes"; then
100 AC_MSG_ERROR([The Guile bindings of GnuTLS are missing; please install them.])
101fi
102
7441f1db
LC
103dnl Check for Guile-Git.
104GUILE_MODULE_AVAILABLE([have_guile_git], [(git)])
105if test "x$have_guile_git" != "xyes"; then
106 AC_MSG_ERROR([Guile-Git is missing; please install it.])
107fi
108
1dbe3a8d 109dnl Guile-JSON is used in various places.
1b3e9685
DT
110GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
111AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])
112
9c7dd33a
LC
113dnl Make sure we have a full-fledged Guile.
114GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
115
cd48eae5
LC
116dnl Decompressors, for use by the substituter and other modules.
117AC_PATH_PROG([GZIP], [gzip])
118AC_PATH_PROG([BZIP2], [bzip2])
119AC_PATH_PROG([XZ], [xz])
120AC_SUBST([GZIP])
121AC_SUBST([BZIP2])
122AC_SUBST([XZ])
123
af51c820 124AC_ARG_WITH([nix-prefix],
bb0a70e1
LC
125 [AS_HELP_STRING([--with-nix-prefix=DIR],
126 [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
af51c820
LC
127 [case "$withval" in
128 yes|no) ;;
437e0729
LC
129 *)
130 NIX_PREFIX="$withval"
131 PATH="$NIX_PREFIX/bin:$PATH"; export PATH
132 AC_SUBST([NIX_PREFIX])
133 ;;
af51c820
LC
134 esac],
135 [])
136
137AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
138AC_PATH_PROG([NIX_HASH], [nix-hash])
3a61f801 139if test "x$guix_build_daemon$NIX_INSTANTIATE$NIX_HASH" = "xno"; then
af51c820
LC
140 AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
141fi
142
c217708f
LC
143if test "x$NIX_INSTANTIATE" = "x"; then
144 # This program is an optional dependency, so we just want it to be
145 # taken from $PATH if it's not available right now.
146 NIX_INSTANTIATE="nix-instantiate"
147fi
148
af51c820 149AC_ARG_WITH([nixpkgs],
bb0a70e1
LC
150 [AS_HELP_STRING([--with-nixpkgs=DIR],
151 [search for Nixpkgs in DIR (for testing purposes only)])],
af51c820
LC
152 [case "$withval" in
153 yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
154 *) NIXPKGS="$withval";;
155 esac],
156 [])
157
e76bdf8b 158AC_MSG_CHECKING([for Nixpkgs source tree])
af51c820 159if test -f "$NIXPKGS/default.nix"; then
af51c820
LC
160 AC_MSG_RESULT([$NIXPKGS])
161 AC_SUBST([NIXPKGS])
162else
e76bdf8b 163 AC_MSG_RESULT([not found])
af51c820
LC
164fi
165
dd01fecd
LC
166LIBGCRYPT="libgcrypt"
167LIBGCRYPT_LIBDIR="no"
168LIBGCRYPT_PREFIX="no"
169
3a310cc0
LC
170AC_ARG_WITH([libgcrypt-prefix],
171 [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
172 [case "$withval" in
173 yes|no)
3a310cc0
LC
174 ;;
175 *)
176 LIBGCRYPT="$withval/lib/libgcrypt"
d388c2c4 177 LIBGCRYPT_PREFIX="$withval"
14af289e 178 LIBGCRYPT_LIBDIR="$withval/lib"
3a310cc0 179 ;;
dd01fecd 180 esac])
3a310cc0 181
14af289e
LC
182AC_ARG_WITH([libgcrypt-libdir],
183 [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
184 [search for GNU libgcrypt's shared library in DIR])],
185 [case "$withval" in
186 yes|no)
187 LIBGCRYPT="libgcrypt"
188 LIBGCRYPT_LIBDIR="no"
189 ;;
190 *)
191 LIBGCRYPT="$withval/libgcrypt"
192 LIBGCRYPT_LIBDIR="$withval"
193 ;;
dd01fecd
LC
194 esac])
195
196dnl If none of the --with-libgcrypt-* options was used, try to determine the
197dnl absolute file name of libgcrypt.so.
198case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
199 xnono)
200 GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
201 if test "x$LIBGCRYPT_LIBDIR" != x; then
202 LIBGCRYPT="$LIBGCRYPT_LIBDIR/libgcrypt"
ca34fc31
LC
203 else
204 dnl 'config-daemon.ac' expects "no" in this case.
205 LIBGCRYPT_LIBDIR="no"
dd01fecd
LC
206 fi
207 ;;
208esac
14af289e 209
3a310cc0
LC
210dnl Library name suitable for `dynamic-link'.
211AC_MSG_CHECKING([for libgcrypt shared library name])
212AC_MSG_RESULT([$LIBGCRYPT])
213AC_SUBST([LIBGCRYPT])
d388c2c4 214AC_SUBST([LIBGCRYPT_PREFIX])
14af289e 215AC_SUBST([LIBGCRYPT_LIBDIR])
d388c2c4
LC
216
217GUIX_ASSERT_LIBGCRYPT_USABLE
218
72153902
LC
219dnl Library name of zlib suitable for 'dynamic-link'.
220GUIX_LIBZ_LIBDIR([libz_libdir])
221if test "x$libz_libdir" = "x"; then
222 LIBZ="libz"
223else
224 LIBZ="$libz_libdir/libz"
225fi
226AC_MSG_CHECKING([for zlib's shared library name])
227AC_MSG_RESULT([$LIBZ])
228AC_SUBST([LIBZ])
229
987a29ba
LC
230dnl Check for Guile-SSH, for the (guix ssh) module.
231GUIX_CHECK_GUILE_SSH
232AM_CONDITIONAL([HAVE_GUILE_SSH],
233 [test "x$guix_cv_have_recent_guile_ssh" = "xyes"])
234
c2033df4
LC
235AC_CACHE_SAVE
236
237m4_include([config-daemon.ac])
3a310cc0 238
cb9e50f6 239dnl `dot' (from the Graphviz package) is only needed for maintainers.
8c01b9d0 240dnl See `Building from Git' in the manual for more info.
cb9e50f6
LC
241AM_MISSING_PROG([DOT], [dot])
242
52eca736
LC
243dnl Manual pages.
244AM_MISSING_PROG([HELP2MAN], [help2man])
245
7bb2b10c
LC
246dnl Emacs (optional), for 'etc/indent-package.el'.
247AC_PATH_PROG([EMACS], [emacs], [/usr/bin/emacs])
248AC_SUBST([EMACS])
249
d480ed7e
LC
250case "$storedir" in
251 /gnu/store)
252 ;;
253 *)
254 AC_MSG_WARN([Using a store directory other than '/gnu/store' will prevent you])
255 AC_MSG_WARN([from downloading substitutes from gnu.org.])
256 ;;
257esac
258
14a1c319 259AC_CONFIG_FILES([Makefile
ef1a9bb7 260 po/guix/Makefile.in
ee764179 261 po/packages/Makefile.in
8dc2ecfc
LC
262 guix/config.scm])
263
e8b3afeb 264AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
a1097caa
ML
265AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
266AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
267 [chmod +x pre-inst-env])
557d9c8d 268AC_CONFIG_FILES([etc/indent-code.el], [chmod +x etc/indent-code.el])
af51c820
LC
269
270AC_OUTPUT