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