Merge branch 'master' into core-updates
[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)
aeaa5ccb 5AC_INIT([GNU Guix], [0.10.0], [bug-guix@gnu.org], [guix],
4bc3fcc7 6 [http://www.gnu.org/software/guix/])
af51c820
LC
7AC_CONFIG_AUX_DIR([build-aux])
8
8aab64fc 9AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects \
a84e523c 10 color-tests parallel-tests -Woverride -Wno-portability])
af51c820 11
032c7c5f
LC
12# Enable silent rules by default.
13AM_SILENT_RULES([yes])
14
af51c820
LC
15AC_CONFIG_SRCDIR([guix.scm])
16AC_CONFIG_MACRO_DIR([m4])
17
c2033df4
LC
18dnl For the C++ code. This must be used early.
19AC_USE_SYSTEM_EXTENSIONS
20
f68b0893 21AM_GNU_GETTEXT([external])
5ac12a4f 22AM_GNU_GETTEXT_VERSION([0.18.1])
f68b0893 23
af51c820
LC
24guilemoduledir="${datarootdir}/guile/site/2.0"
25AC_SUBST([guilemoduledir])
26
c2033df4 27GUIX_SYSTEM_TYPE
b97556d7 28GUIX_ASSERT_SUPPORTED_SYSTEM
c2033df4
LC
29
30AC_ARG_WITH(store-dir,
31 AC_HELP_STRING([--with-store-dir=PATH],
834129e0 32 [file name of the store (defaults to /gnu/store)]),
c2033df4 33 [storedir="$withval"],
834129e0 34 [storedir="/gnu/store"])
c2033df4 35AC_SUBST(storedir)
73d96596 36
ee3e157d
LC
37AC_ARG_WITH([bash-completion-dir],
38 AC_HELP_STRING([--with-bash-completion-dir=DIR],
39 [name of the Bash completion directory]),
40 [bashcompletiondir="$withval"],
41 [bashcompletiondir='${sysconfdir}/bash_completion.d'])
42AC_SUBST([bashcompletiondir])
43
834129e0
LC
44dnl Better be verbose.
45AC_MSG_CHECKING([for the store directory])
46AC_MSG_RESULT([$storedir])
47
3a61f801 48AC_ARG_ENABLE([daemon],
c9b70836 49 [AS_HELP_STRING([--disable-daemon], [build the Nix daemon (C++)])],
3a61f801 50 [guix_build_daemon="$enableval"],
c9b70836 51 [guix_build_daemon="yes"])
3a61f801 52
3f40cfde 53# Prepare a version of $localstatedir & co. that does not contain references
d8eea3d2 54# to shell variables.
6bfec3ed
LC
55guix_prefix="`eval echo $prefix | sed -e"s|NONE|/usr/local|g"`"
56guix_localstatedir="`eval echo $localstatedir | sed -e "s|NONE|$guix_prefix|g"`"
57guix_sysconfdir="`eval echo $sysconfdir | sed -e "s|NONE|$guix_prefix|g"`"
58guix_sbindir="`eval echo $sbindir | sed -e "s|NONE|$guix_prefix|g"`"
d8eea3d2 59AC_SUBST([guix_localstatedir])
3f40cfde 60AC_SUBST([guix_sysconfdir])
6bfec3ed 61AC_SUBST([guix_sbindir])
d8eea3d2 62
bb251307
LC
63GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
64AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
2178ed66 65
0e991c25
LC
66dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
67dnl Make sure they are available.
ff1cbb95 68m4_pattern_forbid([PKG_CHECK_MODULES])
0e991c25 69m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
ff1cbb95 70
47c66da0 71PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.7])
af51c820
LC
72AC_PATH_PROG([GUILE], [guile])
73AC_PATH_PROG([GUILD], [guild])
73f9a978
CN
74if test "x$GUILD" = "x"; then
75 AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.])
76fi
af51c820 77
1b3e9685
DT
78dnl guile-json is used for the PyPI package importer
79GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
80AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])
81
9c7dd33a
LC
82dnl Make sure we have a full-fledged Guile.
83GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
84
1959fb04
LC
85dnl Check whether (srfi srfi-37) works, and provide our own if it doesn't.
86GUIX_CHECK_SRFI_37
87AM_CONDITIONAL([INSTALL_SRFI_37], [test "x$ac_cv_guix_srfi_37_broken" = xyes])
88
cd48eae5
LC
89dnl Decompressors, for use by the substituter and other modules.
90AC_PATH_PROG([GZIP], [gzip])
91AC_PATH_PROG([BZIP2], [bzip2])
92AC_PATH_PROG([XZ], [xz])
93AC_SUBST([GZIP])
94AC_SUBST([BZIP2])
95AC_SUBST([XZ])
96
af51c820 97AC_ARG_WITH([nix-prefix],
bb0a70e1
LC
98 [AS_HELP_STRING([--with-nix-prefix=DIR],
99 [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
af51c820
LC
100 [case "$withval" in
101 yes|no) ;;
437e0729
LC
102 *)
103 NIX_PREFIX="$withval"
104 PATH="$NIX_PREFIX/bin:$PATH"; export PATH
105 AC_SUBST([NIX_PREFIX])
106 ;;
af51c820
LC
107 esac],
108 [])
109
110AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
111AC_PATH_PROG([NIX_HASH], [nix-hash])
3a61f801 112if test "x$guix_build_daemon$NIX_INSTANTIATE$NIX_HASH" = "xno"; then
af51c820
LC
113 AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
114fi
115
c217708f
LC
116if test "x$NIX_INSTANTIATE" = "x"; then
117 # This program is an optional dependency, so we just want it to be
118 # taken from $PATH if it's not available right now.
119 NIX_INSTANTIATE="nix-instantiate"
120fi
121
af51c820 122AC_ARG_WITH([nixpkgs],
bb0a70e1
LC
123 [AS_HELP_STRING([--with-nixpkgs=DIR],
124 [search for Nixpkgs in DIR (for testing purposes only)])],
af51c820
LC
125 [case "$withval" in
126 yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
127 *) NIXPKGS="$withval";;
128 esac],
129 [])
130
e76bdf8b 131AC_MSG_CHECKING([for Nixpkgs source tree])
af51c820 132if test -f "$NIXPKGS/default.nix"; then
af51c820
LC
133 AC_MSG_RESULT([$NIXPKGS])
134 AC_SUBST([NIXPKGS])
135else
e76bdf8b 136 AC_MSG_RESULT([not found])
af51c820
LC
137fi
138
dd01fecd
LC
139LIBGCRYPT="libgcrypt"
140LIBGCRYPT_LIBDIR="no"
141LIBGCRYPT_PREFIX="no"
142
3a310cc0
LC
143AC_ARG_WITH([libgcrypt-prefix],
144 [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
145 [case "$withval" in
146 yes|no)
3a310cc0
LC
147 ;;
148 *)
149 LIBGCRYPT="$withval/lib/libgcrypt"
d388c2c4 150 LIBGCRYPT_PREFIX="$withval"
14af289e 151 LIBGCRYPT_LIBDIR="$withval/lib"
3a310cc0 152 ;;
dd01fecd 153 esac])
3a310cc0 154
14af289e
LC
155AC_ARG_WITH([libgcrypt-libdir],
156 [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
157 [search for GNU libgcrypt's shared library in DIR])],
158 [case "$withval" in
159 yes|no)
160 LIBGCRYPT="libgcrypt"
161 LIBGCRYPT_LIBDIR="no"
162 ;;
163 *)
164 LIBGCRYPT="$withval/libgcrypt"
165 LIBGCRYPT_LIBDIR="$withval"
166 ;;
dd01fecd
LC
167 esac])
168
169dnl If none of the --with-libgcrypt-* options was used, try to determine the
170dnl absolute file name of libgcrypt.so.
171case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
172 xnono)
173 GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
174 if test "x$LIBGCRYPT_LIBDIR" != x; then
175 LIBGCRYPT="$LIBGCRYPT_LIBDIR/libgcrypt"
ca34fc31
LC
176 else
177 dnl 'config-daemon.ac' expects "no" in this case.
178 LIBGCRYPT_LIBDIR="no"
dd01fecd
LC
179 fi
180 ;;
181esac
14af289e 182
3a310cc0
LC
183dnl Library name suitable for `dynamic-link'.
184AC_MSG_CHECKING([for libgcrypt shared library name])
185AC_MSG_RESULT([$LIBGCRYPT])
186AC_SUBST([LIBGCRYPT])
d388c2c4 187AC_SUBST([LIBGCRYPT_PREFIX])
14af289e 188AC_SUBST([LIBGCRYPT_LIBDIR])
d388c2c4
LC
189
190GUIX_ASSERT_LIBGCRYPT_USABLE
191
72153902
LC
192dnl Library name of zlib suitable for 'dynamic-link'.
193GUIX_LIBZ_LIBDIR([libz_libdir])
194if test "x$libz_libdir" = "x"; then
195 LIBZ="libz"
196else
197 LIBZ="$libz_libdir/libz"
198fi
199AC_MSG_CHECKING([for zlib's shared library name])
200AC_MSG_RESULT([$LIBZ])
201AC_SUBST([LIBZ])
202
c2033df4
LC
203AC_CACHE_SAVE
204
205m4_include([config-daemon.ac])
3a310cc0 206
cb9e50f6 207dnl `dot' (from the Graphviz package) is only needed for maintainers.
8c01b9d0 208dnl See `Building from Git' in the manual for more info.
cb9e50f6
LC
209AM_MISSING_PROG([DOT], [dot])
210
52eca736
LC
211dnl Manual pages.
212AM_MISSING_PROG([HELP2MAN], [help2man])
213
14a1c319 214AC_CONFIG_FILES([Makefile
ef1a9bb7 215 po/guix/Makefile.in
ee764179 216 po/packages/Makefile.in
8dc2ecfc
LC
217 guix/config.scm])
218
e8b3afeb 219AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
a1097caa
ML
220AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
221AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
222 [chmod +x pre-inst-env])
af51c820 223
457f60fa 224dnl Emacs interface.
51805219 225AC_PATH_PROG([DOT_USER_PROGRAM], [dot], [dot])
457f60fa 226AM_PATH_LISPDIR
596fcbf7
LC
227AM_CONDITIONAL([HAVE_EMACS], [test "x$EMACS" != "xno"])
228
457f60fa
AK
229emacsuidir="${guilemoduledir}/guix/emacs"
230AC_SUBST([emacsuidir])
bd6163d1 231AC_CONFIG_FILES([emacs/guix-config.el
457f60fa
AK
232 emacs/guix-helper.scm])
233
af51c820 234AC_OUTPUT