gnu: r-iranges: Update to 2.6.0.
[jackhill/guix/guix.git] / configure.ac
... / ...
CommitLineData
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.68)
5AC_INIT([GNU Guix], [0.10.0], [bug-guix@gnu.org], [guix],
6 [http://www.gnu.org/software/guix/])
7AC_CONFIG_AUX_DIR([build-aux])
8
9AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects \
10 color-tests parallel-tests -Woverride -Wno-portability])
11
12# Enable silent rules by default.
13AM_SILENT_RULES([yes])
14
15AC_CONFIG_SRCDIR([guix.scm])
16AC_CONFIG_MACRO_DIR([m4])
17
18dnl For the C++ code. This must be used early.
19AC_USE_SYSTEM_EXTENSIONS
20
21AM_GNU_GETTEXT([external])
22AM_GNU_GETTEXT_VERSION([0.18.1])
23
24guilemoduledir="${datarootdir}/guile/site/2.0"
25AC_SUBST([guilemoduledir])
26
27GUIX_SYSTEM_TYPE
28GUIX_ASSERT_SUPPORTED_SYSTEM
29
30AC_ARG_WITH(store-dir,
31 AC_HELP_STRING([--with-store-dir=PATH],
32 [file name of the store (defaults to /gnu/store)]),
33 [storedir="$withval"],
34 [storedir="/gnu/store"])
35AC_SUBST(storedir)
36
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
44dnl Better be verbose.
45AC_MSG_CHECKING([for the store directory])
46AC_MSG_RESULT([$storedir])
47
48AC_ARG_ENABLE([daemon],
49 [AS_HELP_STRING([--disable-daemon], [build the Nix daemon (C++)])],
50 [guix_build_daemon="$enableval"],
51 [guix_build_daemon="yes"])
52
53# Prepare a version of $localstatedir & co. that does not contain references
54# to shell variables.
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"`"
59AC_SUBST([guix_localstatedir])
60AC_SUBST([guix_sysconfdir])
61AC_SUBST([guix_sbindir])
62
63GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
64AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
65
66dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
67dnl Make sure they are available.
68m4_pattern_forbid([PKG_CHECK_MODULES])
69m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
70
71PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.7])
72AC_PATH_PROG([GUILE], [guile])
73AC_PATH_PROG([GUILD], [guild])
74if test "x$GUILD" = "x"; then
75 AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.])
76fi
77
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
82dnl Make sure we have a full-fledged Guile.
83GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
84
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
89dnl Check whether (guix build syscalls) can be built.
90GUIX_CHECK_LIBC_MOUNT
91AM_CONDITIONAL([BUILD_SYSCALLS_MODULE],
92 [test "x$guix_cv_libc_has_mount" = "xyes"])
93
94dnl Decompressors, for use by the substituter and other modules.
95AC_PATH_PROG([GZIP], [gzip])
96AC_PATH_PROG([BZIP2], [bzip2])
97AC_PATH_PROG([XZ], [xz])
98AC_SUBST([GZIP])
99AC_SUBST([BZIP2])
100AC_SUBST([XZ])
101
102AC_ARG_WITH([nix-prefix],
103 [AS_HELP_STRING([--with-nix-prefix=DIR],
104 [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
105 [case "$withval" in
106 yes|no) ;;
107 *)
108 NIX_PREFIX="$withval"
109 PATH="$NIX_PREFIX/bin:$PATH"; export PATH
110 AC_SUBST([NIX_PREFIX])
111 ;;
112 esac],
113 [])
114
115AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
116AC_PATH_PROG([NIX_HASH], [nix-hash])
117if test "x$guix_build_daemon$NIX_INSTANTIATE$NIX_HASH" = "xno"; then
118 AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
119fi
120
121if test "x$NIX_INSTANTIATE" = "x"; then
122 # This program is an optional dependency, so we just want it to be
123 # taken from $PATH if it's not available right now.
124 NIX_INSTANTIATE="nix-instantiate"
125fi
126
127AC_ARG_WITH([nixpkgs],
128 [AS_HELP_STRING([--with-nixpkgs=DIR],
129 [search for Nixpkgs in DIR (for testing purposes only)])],
130 [case "$withval" in
131 yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
132 *) NIXPKGS="$withval";;
133 esac],
134 [])
135
136AC_MSG_CHECKING([for Nixpkgs source tree])
137if test -f "$NIXPKGS/default.nix"; then
138 AC_MSG_RESULT([$NIXPKGS])
139 AC_SUBST([NIXPKGS])
140else
141 AC_MSG_RESULT([not found])
142fi
143
144LIBGCRYPT="libgcrypt"
145LIBGCRYPT_LIBDIR="no"
146LIBGCRYPT_PREFIX="no"
147
148AC_ARG_WITH([libgcrypt-prefix],
149 [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
150 [case "$withval" in
151 yes|no)
152 ;;
153 *)
154 LIBGCRYPT="$withval/lib/libgcrypt"
155 LIBGCRYPT_PREFIX="$withval"
156 LIBGCRYPT_LIBDIR="$withval/lib"
157 ;;
158 esac])
159
160AC_ARG_WITH([libgcrypt-libdir],
161 [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
162 [search for GNU libgcrypt's shared library in DIR])],
163 [case "$withval" in
164 yes|no)
165 LIBGCRYPT="libgcrypt"
166 LIBGCRYPT_LIBDIR="no"
167 ;;
168 *)
169 LIBGCRYPT="$withval/libgcrypt"
170 LIBGCRYPT_LIBDIR="$withval"
171 ;;
172 esac])
173
174dnl If none of the --with-libgcrypt-* options was used, try to determine the
175dnl absolute file name of libgcrypt.so.
176case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
177 xnono)
178 GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
179 if test "x$LIBGCRYPT_LIBDIR" != x; then
180 LIBGCRYPT="$LIBGCRYPT_LIBDIR/libgcrypt"
181 else
182 dnl 'config-daemon.ac' expects "no" in this case.
183 LIBGCRYPT_LIBDIR="no"
184 fi
185 ;;
186esac
187
188dnl Library name suitable for `dynamic-link'.
189AC_MSG_CHECKING([for libgcrypt shared library name])
190AC_MSG_RESULT([$LIBGCRYPT])
191AC_SUBST([LIBGCRYPT])
192AC_SUBST([LIBGCRYPT_PREFIX])
193AC_SUBST([LIBGCRYPT_LIBDIR])
194
195GUIX_ASSERT_LIBGCRYPT_USABLE
196
197AC_CACHE_SAVE
198
199m4_include([config-daemon.ac])
200
201dnl `dot' (from the Graphviz package) is only needed for maintainers.
202dnl See `Building from Git' in the manual for more info.
203AM_MISSING_PROG([DOT], [dot])
204
205dnl Manual pages.
206AM_MISSING_PROG([HELP2MAN], [help2man])
207
208AC_CONFIG_FILES([Makefile
209 po/guix/Makefile.in
210 po/packages/Makefile.in
211 guix/config.scm])
212
213AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
214AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
215AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
216 [chmod +x pre-inst-env])
217
218dnl Emacs interface.
219AC_PATH_PROG([DOT_USER_PROGRAM], [dot], [dot])
220AM_PATH_LISPDIR
221AM_CONDITIONAL([HAVE_EMACS], [test "x$EMACS" != "xno"])
222
223emacsuidir="${guilemoduledir}/guix/emacs"
224AC_SUBST([emacsuidir])
225AC_CONFIG_FILES([emacs/guix-config.el
226 emacs/guix-helper.scm])
227
228AC_OUTPUT