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