scripts: environment: Use system* instead of system.
[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)
abbe2c61 5AC_INIT([GNU Guix], [0.9.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
2178ed66
LC
63GUIX_CHECK_FILE_NAME_LIMITS
64
0e991c25
LC
65dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
66dnl Make sure they are available.
ff1cbb95 67m4_pattern_forbid([PKG_CHECK_MODULES])
0e991c25 68m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
ff1cbb95 69
47c66da0 70PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.7])
af51c820
LC
71AC_PATH_PROG([GUILE], [guile])
72AC_PATH_PROG([GUILD], [guild])
73f9a978
CN
73if test "x$GUILD" = "x"; then
74 AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.])
75fi
af51c820 76
1b3e9685
DT
77dnl guile-json is used for the PyPI package importer
78GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
79AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])
80
9c7dd33a
LC
81dnl Make sure we have a full-fledged Guile.
82GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
83
1959fb04
LC
84dnl Check whether (srfi srfi-37) works, and provide our own if it doesn't.
85GUIX_CHECK_SRFI_37
86AM_CONDITIONAL([INSTALL_SRFI_37], [test "x$ac_cv_guix_srfi_37_broken" = xyes])
87
12e5b266
LC
88dnl Check whether (guix build syscalls) can be built.
89GUIX_CHECK_LIBC_MOUNT
90AM_CONDITIONAL([BUILD_SYSCALLS_MODULE],
91 [test "x$guix_cv_libc_has_mount" = "xyes"])
92
af51c820 93AC_ARG_WITH([nix-prefix],
bb0a70e1
LC
94 [AS_HELP_STRING([--with-nix-prefix=DIR],
95 [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
af51c820
LC
96 [case "$withval" in
97 yes|no) ;;
437e0729
LC
98 *)
99 NIX_PREFIX="$withval"
100 PATH="$NIX_PREFIX/bin:$PATH"; export PATH
101 AC_SUBST([NIX_PREFIX])
102 ;;
af51c820
LC
103 esac],
104 [])
105
106AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
107AC_PATH_PROG([NIX_HASH], [nix-hash])
3a61f801 108if test "x$guix_build_daemon$NIX_INSTANTIATE$NIX_HASH" = "xno"; then
af51c820
LC
109 AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
110fi
111
c217708f
LC
112if test "x$NIX_INSTANTIATE" = "x"; then
113 # This program is an optional dependency, so we just want it to be
114 # taken from $PATH if it's not available right now.
115 NIX_INSTANTIATE="nix-instantiate"
116fi
117
af51c820 118AC_ARG_WITH([nixpkgs],
bb0a70e1
LC
119 [AS_HELP_STRING([--with-nixpkgs=DIR],
120 [search for Nixpkgs in DIR (for testing purposes only)])],
af51c820
LC
121 [case "$withval" in
122 yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
123 *) NIXPKGS="$withval";;
124 esac],
125 [])
126
e76bdf8b 127AC_MSG_CHECKING([for Nixpkgs source tree])
af51c820 128if test -f "$NIXPKGS/default.nix"; then
af51c820
LC
129 AC_MSG_RESULT([$NIXPKGS])
130 AC_SUBST([NIXPKGS])
131else
e76bdf8b 132 AC_MSG_RESULT([not found])
af51c820
LC
133fi
134
dd01fecd
LC
135LIBGCRYPT="libgcrypt"
136LIBGCRYPT_LIBDIR="no"
137LIBGCRYPT_PREFIX="no"
138
3a310cc0
LC
139AC_ARG_WITH([libgcrypt-prefix],
140 [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
141 [case "$withval" in
142 yes|no)
3a310cc0
LC
143 ;;
144 *)
145 LIBGCRYPT="$withval/lib/libgcrypt"
d388c2c4 146 LIBGCRYPT_PREFIX="$withval"
14af289e 147 LIBGCRYPT_LIBDIR="$withval/lib"
3a310cc0 148 ;;
dd01fecd 149 esac])
3a310cc0 150
14af289e
LC
151AC_ARG_WITH([libgcrypt-libdir],
152 [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
153 [search for GNU libgcrypt's shared library in DIR])],
154 [case "$withval" in
155 yes|no)
156 LIBGCRYPT="libgcrypt"
157 LIBGCRYPT_LIBDIR="no"
158 ;;
159 *)
160 LIBGCRYPT="$withval/libgcrypt"
161 LIBGCRYPT_LIBDIR="$withval"
162 ;;
dd01fecd
LC
163 esac])
164
165dnl If none of the --with-libgcrypt-* options was used, try to determine the
166dnl absolute file name of libgcrypt.so.
167case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
168 xnono)
169 GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
170 if test "x$LIBGCRYPT_LIBDIR" != x; then
171 LIBGCRYPT="$LIBGCRYPT_LIBDIR/libgcrypt"
172 fi
173 ;;
174esac
14af289e 175
3a310cc0
LC
176dnl Library name suitable for `dynamic-link'.
177AC_MSG_CHECKING([for libgcrypt shared library name])
178AC_MSG_RESULT([$LIBGCRYPT])
179AC_SUBST([LIBGCRYPT])
d388c2c4 180AC_SUBST([LIBGCRYPT_PREFIX])
14af289e 181AC_SUBST([LIBGCRYPT_LIBDIR])
d388c2c4
LC
182
183GUIX_ASSERT_LIBGCRYPT_USABLE
184
c2033df4
LC
185AC_CACHE_SAVE
186
187m4_include([config-daemon.ac])
3a310cc0 188
cb9e50f6 189dnl `dot' (from the Graphviz package) is only needed for maintainers.
8c01b9d0 190dnl See `Building from Git' in the manual for more info.
cb9e50f6
LC
191AM_MISSING_PROG([DOT], [dot])
192
52eca736
LC
193dnl Manual pages.
194AM_MISSING_PROG([HELP2MAN], [help2man])
195
14a1c319 196AC_CONFIG_FILES([Makefile
ef1a9bb7 197 po/guix/Makefile.in
ee764179 198 po/packages/Makefile.in
8dc2ecfc
LC
199 guix/config.scm])
200
e8b3afeb
LC
201AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
202AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
203AC_CONFIG_FILES([test-env], [chmod +x test-env])
af51c820 204
457f60fa
AK
205dnl Emacs interface.
206AM_PATH_LISPDIR
596fcbf7
LC
207AM_CONDITIONAL([HAVE_EMACS], [test "x$EMACS" != "xno"])
208
457f60fa
AK
209emacsuidir="${guilemoduledir}/guix/emacs"
210AC_SUBST([emacsuidir])
bd6163d1 211AC_CONFIG_FILES([emacs/guix-config.el
457f60fa
AK
212 emacs/guix-helper.scm])
213
af51c820 214AC_OUTPUT