aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: d8537294c54a89696ae95364f2f37139f03392c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.68)
AC_INIT([Guix], [0.0], [guile-user@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])

AM_INIT_AUTOMAKE([1.11 gnu silent-rules subdir-objects \
 color-tests parallel-tests])

AC_CONFIG_SRCDIR([guix.scm])
AC_CONFIG_MACRO_DIR([m4])

AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.18.1])

guilemoduledir="${datarootdir}/guile/site/2.0"
AC_SUBST([guilemoduledir])

AC_CANONICAL_HOST

PKG_CHECK_MODULES([GUILE], [guile-2.0])
AC_PATH_PROG([GUILE], [guile])
AC_PATH_PROG([GUILD], [guild])

AC_ARG_WITH([nix-prefix],
  [AS_HELP_STRING([--with-nix-prefix=DIR], [search for Nix in DIR])],
  [case "$withval" in
    yes|no) ;;
    *)      PATH="$withval/bin:$PATH"; export PATH;;
   esac],
  [])

AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
AC_PATH_PROG([NIX_HASH], [nix-hash])
if test "x$NIX_INSTANTIATE$NIX_HASH" = "x"; then
   AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
fi

AC_ARG_WITH([nixpkgs],
  [AS_HELP_STRING([--with-nixpkgs=DIR], [search for Nixpkgs in DIR])],
  [case "$withval" in
    yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
    *)      NIXPKGS="$withval";;
   esac],
  [])

if test -f "$NIXPKGS/default.nix"; then
   AC_MSG_CHECKING([for Nixpkgs source tree])
   AC_MSG_RESULT([$NIXPKGS])
   AC_SUBST([NIXPKGS])
else
   AC_MSG_WARN([Nixpkgs not found; this will prevent most tests from running.])
   AC_MSG_WARN([Please use `--with-nixpkgs'.])
fi

AC_CONFIG_FILES([Makefile
                 po/Makefile.in
		 guix-build])

AC_CONFIG_COMMANDS([commands-exec], [chmod +x guix-build])

AC_OUTPUT
'2019-11-17 23:14:54 +0100'>2019-11-17tests: Test "guix build /gnu/store/….drv".Ludovic Courtès 2019-11-07gnu: commencement: Ensure 'gnu-make-final' refers to the native 'pkg-config'.Ludovic Courtès 2019-07-20ui: 'warn-about-load-error' provides hints for unbound variables.Ludovic Courtès 2019-07-20ui: 'warn-about-load-error' warns about file/module name mismatches.Ludovic Courtès 2019-04-19guix build: Accept multiple '-s' options.Ludovic Courtès 2019-04-15guix build: Fix relative file name canonicalization for '--root'.Ludovic Courtès 2019-02-04daemon: Rename 'NIX_STATE_DIR' and 'NIX_DB_DIR' environment variables.Ludovic Courtès 2018-10-09guix build: '-f' accepts file-like objects.Ludovic Courtès 2018-05-04guix build: Nicely report unbound variables with hints.Ludovic Courtès 2018-03-13gnu: time: Update to 1.9.Efraim Flashner 2017-11-11tests: Refer to "time@1.8".Ludovic Courtès 2017-05-01packages: Remove support for PACKAGE-VERSION deprecated syntax.Ludovic Courtès 2017-04-21store: 'GUIX_DAEMON_SOCKET' can now be a URI.Ludovic Courtès 2017-03-19gnu: Rename "guile-next" to "guile".Ludovic Courtès 2016-10-03tests: Adjust 'guix build -S' test for source-less packages.Ludovic Courtès 2016-09-06packages: Add 'package-superseded' and associated support.Ludovic Courtès 2016-03-08packages: Support the deprecated "NAME-VERSION" syntax.Ludovic Courtès 2016-03-03guix build: -S returns the replacement's source.Ludovic Courtès 2016-03-02utils: Use '@' for separating package names and version numbers.Mathieu Lirzin 2016-03-02tests: Disable grafts by default.Ludovic Courtès 2016-02-01guix build: Add '--with-input'.Ludovic Courtès 2015-10-28scripts: build: Add --file option.David Thompson 2015-05-02guix: build: Add transitive source building.Eric Bavier