http-client: Provide 'User-Agent' header by default.
[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
9d126aa2 76dnl Search for 'guile' and 'guild'. Prefer 2.0 until the 2.2 upgrade is
301d73f6 77dnl complete. This macro defines 'GUILE_EFFECTIVE_VERSION'.
9d126aa2
LC
78GUILE_PKG([2.0 2.2])
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
LC
84if test "x$GUILE_EFFECTIVE_VERSION" = "x2.0"; then
85 PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.7])
86else
87 AC_MSG_WARN([Guile $GUILE_EFFECTIVE_VERSION is not fully supported!])
88fi
89
301d73f6
LC
90dnl Installation directory for .scm and .go files.
91guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
92AC_SUBST([guilemoduledir])
93
1b3e9685
DT
94dnl guile-json is used for the PyPI package importer
95GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
96AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])
97
9c7dd33a
LC
98dnl Make sure we have a full-fledged Guile.
99GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
100
1959fb04
LC
101dnl Check whether (srfi srfi-37) works, and provide our own if it doesn't.
102GUIX_CHECK_SRFI_37
103AM_CONDITIONAL([INSTALL_SRFI_37], [test "x$ac_cv_guix_srfi_37_broken" = xyes])
104
cd48eae5
LC
105dnl Decompressors, for use by the substituter and other modules.
106AC_PATH_PROG([GZIP], [gzip])
107AC_PATH_PROG([BZIP2], [bzip2])
108AC_PATH_PROG([XZ], [xz])
109AC_SUBST([GZIP])
110AC_SUBST([BZIP2])
111AC_SUBST([XZ])
112
af51c820 113AC_ARG_WITH([nix-prefix],
bb0a70e1
LC
114 [AS_HELP_STRING([--with-nix-prefix=DIR],
115 [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
af51c820
LC
116 [case "$withval" in
117 yes|no) ;;
437e0729
LC
118 *)
119 NIX_PREFIX="$withval"
120 PATH="$NIX_PREFIX/bin:$PATH"; export PATH
121 AC_SUBST([NIX_PREFIX])
122 ;;
af51c820
LC
123 esac],
124 [])
125
126AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
127AC_PATH_PROG([NIX_HASH], [nix-hash])
3a61f801 128if test "x$guix_build_daemon$NIX_INSTANTIATE$NIX_HASH" = "xno"; then
af51c820
LC
129 AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
130fi
131
c217708f
LC
132if test "x$NIX_INSTANTIATE" = "x"; then
133 # This program is an optional dependency, so we just want it to be
134 # taken from $PATH if it's not available right now.
135 NIX_INSTANTIATE="nix-instantiate"
136fi
137
af51c820 138AC_ARG_WITH([nixpkgs],
bb0a70e1
LC
139 [AS_HELP_STRING([--with-nixpkgs=DIR],
140 [search for Nixpkgs in DIR (for testing purposes only)])],
af51c820
LC
141 [case "$withval" in
142 yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
143 *) NIXPKGS="$withval";;
144 esac],
145 [])
146
e76bdf8b 147AC_MSG_CHECKING([for Nixpkgs source tree])
af51c820 148if test -f "$NIXPKGS/default.nix"; then
af51c820
LC
149 AC_MSG_RESULT([$NIXPKGS])
150 AC_SUBST([NIXPKGS])
151else
e76bdf8b 152 AC_MSG_RESULT([not found])
af51c820
LC
153fi
154
dd01fecd
LC
155LIBGCRYPT="libgcrypt"
156LIBGCRYPT_LIBDIR="no"
157LIBGCRYPT_PREFIX="no"
158
3a310cc0
LC
159AC_ARG_WITH([libgcrypt-prefix],
160 [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
161 [case "$withval" in
162 yes|no)
3a310cc0
LC
163 ;;
164 *)
165 LIBGCRYPT="$withval/lib/libgcrypt"
d388c2c4 166 LIBGCRYPT_PREFIX="$withval"
14af289e 167 LIBGCRYPT_LIBDIR="$withval/lib"
3a310cc0 168 ;;
dd01fecd 169 esac])
3a310cc0 170
14af289e
LC
171AC_ARG_WITH([libgcrypt-libdir],
172 [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
173 [search for GNU libgcrypt's shared library in DIR])],
174 [case "$withval" in
175 yes|no)
176 LIBGCRYPT="libgcrypt"
177 LIBGCRYPT_LIBDIR="no"
178 ;;
179 *)
180 LIBGCRYPT="$withval/libgcrypt"
181 LIBGCRYPT_LIBDIR="$withval"
182 ;;
dd01fecd
LC
183 esac])
184
185dnl If none of the --with-libgcrypt-* options was used, try to determine the
186dnl absolute file name of libgcrypt.so.
187case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
188 xnono)
189 GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
190 if test "x$LIBGCRYPT_LIBDIR" != x; then
191 LIBGCRYPT="$LIBGCRYPT_LIBDIR/libgcrypt"
ca34fc31
LC
192 else
193 dnl 'config-daemon.ac' expects "no" in this case.
194 LIBGCRYPT_LIBDIR="no"
dd01fecd
LC
195 fi
196 ;;
197esac
14af289e 198
3a310cc0
LC
199dnl Library name suitable for `dynamic-link'.
200AC_MSG_CHECKING([for libgcrypt shared library name])
201AC_MSG_RESULT([$LIBGCRYPT])
202AC_SUBST([LIBGCRYPT])
d388c2c4 203AC_SUBST([LIBGCRYPT_PREFIX])
14af289e 204AC_SUBST([LIBGCRYPT_LIBDIR])
d388c2c4
LC
205
206GUIX_ASSERT_LIBGCRYPT_USABLE
207
72153902
LC
208dnl Library name of zlib suitable for 'dynamic-link'.
209GUIX_LIBZ_LIBDIR([libz_libdir])
210if test "x$libz_libdir" = "x"; then
211 LIBZ="libz"
212else
213 LIBZ="$libz_libdir/libz"
214fi
215AC_MSG_CHECKING([for zlib's shared library name])
216AC_MSG_RESULT([$LIBZ])
217AC_SUBST([LIBZ])
218
987a29ba
LC
219dnl Check for Guile-SSH, for the (guix ssh) module.
220GUIX_CHECK_GUILE_SSH
221AM_CONDITIONAL([HAVE_GUILE_SSH],
222 [test "x$guix_cv_have_recent_guile_ssh" = "xyes"])
223
c2033df4
LC
224AC_CACHE_SAVE
225
226m4_include([config-daemon.ac])
3a310cc0 227
cb9e50f6 228dnl `dot' (from the Graphviz package) is only needed for maintainers.
8c01b9d0 229dnl See `Building from Git' in the manual for more info.
cb9e50f6
LC
230AM_MISSING_PROG([DOT], [dot])
231
52eca736
LC
232dnl Manual pages.
233AM_MISSING_PROG([HELP2MAN], [help2man])
234
7bb2b10c
LC
235dnl Emacs (optional), for 'etc/indent-package.el'.
236AC_PATH_PROG([EMACS], [emacs], [/usr/bin/emacs])
237AC_SUBST([EMACS])
238
14a1c319 239AC_CONFIG_FILES([Makefile
ef1a9bb7 240 po/guix/Makefile.in
ee764179 241 po/packages/Makefile.in
8dc2ecfc
LC
242 guix/config.scm])
243
e8b3afeb 244AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
a1097caa
ML
245AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
246AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
247 [chmod +x pre-inst-env])
7bb2b10c 248AC_CONFIG_FILES([etc/indent-package.el], [chmod +x etc/indent-package.el])
af51c820
LC
249
250AC_OUTPUT