forked from lix-project/hydra
Samuel Dionne-Riel
51ce620681
This is caused by the autoconf check for `nix-store` which is equivalent to running this: ``` $ nix-store --timeout 123 -q ``` This would open the pager on a 2.1.1 version of nix. ``` $ nix-store --version nix-store (Nix) 2.1.1 ``` Setting `PAGER` to `cat` ensures the pager doesn't block the configurePhase. ``` $ PAGER=cat nix-store --timeout 123 -q ```
94 lines
2.1 KiB
Plaintext
94 lines
2.1 KiB
Plaintext
AC_INIT([Hydra], [m4_esyscmd([echo -n $(cat ./version)$VERSION_SUFFIX])],
|
|
[nix-dev@cs.uu.nl], [hydra], [http://nixos.org/hydra/])
|
|
AC_CONFIG_AUX_DIR(config)
|
|
AM_INIT_AUTOMAKE([foreign serial-tests])
|
|
|
|
AC_LANG([C++])
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LN_S
|
|
AC_PROG_LIBTOOL
|
|
AC_PROG_CXX
|
|
|
|
CXXFLAGS+=" -std=c++17"
|
|
|
|
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
|
|
|
AC_ARG_WITH([docbook-xsl],
|
|
[AS_HELP_STRING([--with-docbook-xsl=PATH],
|
|
[path of the DocBook XSL stylesheets])],
|
|
[docbookxsl="$withval"],
|
|
[docbookxsl="/docbook-xsl-missing"])
|
|
AC_SUBST([docbookxsl])
|
|
|
|
|
|
AC_DEFUN([NEED_PROG],
|
|
[
|
|
AC_PATH_PROG($1, $2)
|
|
if test -z "$$1"; then
|
|
AC_MSG_ERROR([$2 is required])
|
|
fi
|
|
])
|
|
|
|
NEED_PROG(perl, perl)
|
|
|
|
NEED_PROG([NIX_STORE_PROGRAM], [nix-store])
|
|
|
|
AC_MSG_CHECKING([whether $NIX_STORE_PROGRAM is recent enough])
|
|
if test -n "$NIX_STORE" -a -n "$TMPDIR"
|
|
then
|
|
# This may be executed from within a build chroot, so pacify
|
|
# `nix-store' instead of letting it choke while trying to mkdir
|
|
# /nix/var.
|
|
NIX_STATE_DIR="$TMPDIR"
|
|
export NIX_STATE_DIR
|
|
fi
|
|
if NIX_REMOTE=daemon PAGER=cat "$NIX_STORE_PROGRAM" --timeout 123 -q; then
|
|
AC_MSG_RESULT([yes])
|
|
else
|
|
AC_MSG_RESULT([no])
|
|
AC_MSG_ERROR([`$NIX_STORE_PROGRAM' doesn't support `--timeout'; please use a newer version.])
|
|
fi
|
|
|
|
PKG_CHECK_MODULES([NIX], [nix-main nix-expr nix-store])
|
|
|
|
PKG_CHECK_MODULES([GUILE], [guile-2.0], [HAVE_GUILE=yes], [HAVE_GUILE=no])
|
|
|
|
if test "x$HAVE_GUILE" = xyes; then
|
|
AC_PATH_PROG([GUILE], [guile])
|
|
else
|
|
GUILE="guile"
|
|
fi
|
|
AC_SUBST([GUILE])
|
|
|
|
testPath="$(dirname $(type -p expr))"
|
|
AC_SUBST(testPath)
|
|
|
|
CXXFLAGS+=" -include nix/config.h"
|
|
|
|
AC_CONFIG_FILES([
|
|
Makefile
|
|
doc/Makefile
|
|
doc/manual/Makefile
|
|
src/Makefile
|
|
src/hydra-evaluator/Makefile
|
|
src/hydra-eval-jobs/Makefile
|
|
src/hydra-queue-runner/Makefile
|
|
src/sql/Makefile
|
|
src/ttf/Makefile
|
|
src/lib/Makefile
|
|
src/root/Makefile
|
|
src/script/Makefile
|
|
src/script/hydra-eval-guile-jobs
|
|
tests/Makefile
|
|
tests/jobs/config.nix
|
|
])
|
|
|
|
AC_CONFIG_COMMANDS([executable-scripts],
|
|
[chmod +x src/script/hydra-eval-guile-jobs])
|
|
|
|
AC_CONFIG_HEADER([hydra-config.h])
|
|
|
|
AC_OUTPUT
|