1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-09 03:43:54 +02:00

* Make perl a dependency of Nix.

This commit is contained in:
Eelco Dolstra 2004-03-15 15:23:53 +00:00
parent a5619f1dff
commit beda10f5a2
9 changed files with 15 additions and 7 deletions

View file

@ -47,6 +47,11 @@ AC_PATH_PROG(xmllint, xmllint)
AC_PATH_PROG(xsltproc, xsltproc)
AC_PATH_PROG(flex, flex, false)
AC_PATH_PROG(bison, bison, false)
AC_PATH_PROG(perl, perl)
if test -z "$perl"; then
echo "Perl is required for Nix."
exit 1
fi
AC_ARG_WITH(docbook-catalog, AC_HELP_STRING([--with-docbook-catalog=PATH],
[path of the DocBook XML DTD]),