2009-03-09 15:05:08 +00:00
|
|
|
AC_INIT(nix, m4_esyscmd([echo -n $(cat ./version)$VERSION_SUFFIX]))
|
2003-10-20 10:05:01 +00:00
|
|
|
AC_CONFIG_SRCDIR(README)
|
2003-04-04 16:14:56 +00:00
|
|
|
AC_CONFIG_AUX_DIR(config)
|
2005-09-15 09:18:21 +00:00
|
|
|
AM_INIT_AUTOMAKE([dist-bzip2 foreign])
|
2008-11-20 14:14:35 +00:00
|
|
|
|
2008-06-09 13:52:45 +00:00
|
|
|
AC_DEFINE_UNQUOTED(NIX_VERSION, ["$VERSION"], [Nix version.])
|
2006-03-01 12:15:33 +00:00
|
|
|
|
2003-04-04 16:14:56 +00:00
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2003-12-01 14:36:50 +00:00
|
|
|
# Construct a Nix system name (like "i686-linux").
|
|
|
|
AC_MSG_CHECKING([for the canonical Nix system name])
|
2010-06-24 17:51:24 +00:00
|
|
|
cpu_name=$(uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ' 'abcdefghijklmnopqrstuvwxyz_')
|
|
|
|
machine_name=$(uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ' 'abcdefghijklmnopqrstuvwxyz_')
|
2004-08-13 09:57:51 +00:00
|
|
|
|
|
|
|
case $machine_name in
|
|
|
|
i*86)
|
|
|
|
machine_name=i686
|
|
|
|
;;
|
2006-11-13 14:54:18 +00:00
|
|
|
x86_64)
|
|
|
|
machine_name=x86_64
|
|
|
|
;;
|
2006-08-25 16:23:42 +00:00
|
|
|
ppc)
|
|
|
|
machine_name=powerpc
|
|
|
|
;;
|
2004-08-13 09:57:51 +00:00
|
|
|
*)
|
|
|
|
if test "$cpu_name" != "unknown"; then
|
|
|
|
machine_name=$cpu_name
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-06-24 17:51:24 +00:00
|
|
|
sys_name=$(uname -s | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ' 'abcdefghijklmnopqrstuvwxyz_')
|
2006-05-31 11:50:14 +00:00
|
|
|
|
|
|
|
case $sys_name in
|
|
|
|
cygwin*)
|
|
|
|
sys_name=cygwin
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2004-05-18 09:45:46 +00:00
|
|
|
AC_ARG_WITH(system, AC_HELP_STRING([--with-system=SYSTEM],
|
2008-06-09 13:52:45 +00:00
|
|
|
[Platform identifier (e.g., `i686-linux').]),
|
2004-07-18 21:07:27 +00:00
|
|
|
system=$withval, system="${machine_name}-${sys_name}")
|
2003-12-01 14:36:50 +00:00
|
|
|
AC_MSG_RESULT($system)
|
|
|
|
AC_SUBST(system)
|
2004-04-23 15:16:08 +00:00
|
|
|
AC_DEFINE_UNQUOTED(SYSTEM, ["$system"], [platform identifier (`cpu-os')])
|
2003-12-01 14:36:50 +00:00
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2008-11-20 14:14:35 +00:00
|
|
|
# State should be stored in /nix/var, unless the user overrides it explicitly.
|
|
|
|
test "$localstatedir" = '${prefix}/var' && localstatedir=/nix/var
|
|
|
|
|
|
|
|
|
2009-03-26 12:22:08 +00:00
|
|
|
# Whether to produce a statically linked binary. On Cygwin, this is
|
|
|
|
# the default: dynamically linking against the ATerm DLL does work,
|
|
|
|
# except that it requires the ATerm "lib" directory to be in $PATH, as
|
|
|
|
# Windows doesn't have anything like an RPATH embedded in executable.
|
|
|
|
# Since this is kind of annoying, we use static libraries for now.
|
2009-10-06 09:14:06 +00:00
|
|
|
|
2009-05-07 11:33:57 +00:00
|
|
|
AC_ARG_ENABLE(static-nix, AC_HELP_STRING([--enable-static-nix],
|
2009-03-26 12:22:08 +00:00
|
|
|
[produce statically linked binaries]),
|
|
|
|
static_nix=$enableval, static_nix=no)
|
|
|
|
|
|
|
|
if test "$sys_name" = cygwin; then
|
|
|
|
static_nix=yes
|
|
|
|
fi
|
2009-10-06 09:14:06 +00:00
|
|
|
|
2009-03-26 12:22:08 +00:00
|
|
|
if test "$static_nix" = yes; then
|
|
|
|
AC_DISABLE_SHARED
|
|
|
|
AC_ENABLE_STATIC
|
|
|
|
fi
|
|
|
|
|
2009-10-06 09:14:06 +00:00
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
# Windows-specific stuff.
|
|
|
|
if test "$sys_name" = "cygwin"; then
|
|
|
|
# We cannot delete open files.
|
|
|
|
AC_DEFINE(CANNOT_DELETE_OPEN_FILES, 1, [Whether it is impossible to delete open files.])
|
|
|
|
fi
|
|
|
|
|
2009-10-08 14:50:37 +00:00
|
|
|
# Solaris-specific stuff.
|
|
|
|
if test "$sys_name" = "sunos"; then
|
|
|
|
# Solaris requires -lsocket -lnsl for network functions
|
|
|
|
ADDITIONAL_NETWORK_LIBS="-lsocket -lnsl"
|
|
|
|
AC_SUBST(ADDITIONAL_NETWORK_LIBS)
|
|
|
|
fi
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2003-04-04 16:14:56 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CXX
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2010-03-11 20:56:25 +00:00
|
|
|
# To build programs to be run in the build machine
|
|
|
|
if test "$CC_FOR_BUILD" = ""; then
|
|
|
|
if test "$cross_compiling" = "yes"; then
|
|
|
|
AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
|
|
|
|
else
|
|
|
|
CC_FOR_BUILD="$CC"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AC_SUBST([CC_FOR_BUILD])
|
2003-04-04 16:14:56 +00:00
|
|
|
|
2005-07-22 14:52:45 +00:00
|
|
|
# We are going to use libtool.
|
|
|
|
AC_DISABLE_STATIC
|
2006-09-04 15:12:24 +00:00
|
|
|
AC_ENABLE_SHARED
|
2005-07-22 14:52:45 +00:00
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2006-09-22 11:13:12 +00:00
|
|
|
# Use 64-bit file system calls so that we can support files > 2 GiB.
|
2009-10-06 09:14:06 +00:00
|
|
|
AC_SYS_LARGEFILE
|
2006-09-22 11:13:12 +00:00
|
|
|
|
|
|
|
|
2003-12-22 16:40:46 +00:00
|
|
|
# Check for pubsetbuf.
|
|
|
|
AC_MSG_CHECKING([for pubsetbuf])
|
|
|
|
AC_LANG_PUSH(C++)
|
|
|
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
static char buf[1024];]],
|
|
|
|
[[cerr.rdbuf()->pubsetbuf(buf, sizeof(buf));]])],
|
2008-06-09 13:52:45 +00:00
|
|
|
[AC_MSG_RESULT(yes) AC_DEFINE(HAVE_PUBSETBUF, 1, [Whether pubsetbuf is available.])],
|
2003-12-22 16:40:46 +00:00
|
|
|
AC_MSG_RESULT(no))
|
|
|
|
AC_LANG_POP(C++)
|
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2007-10-27 16:51:55 +00:00
|
|
|
# Check for chroot support (requires chroot() and bind mounts).
|
|
|
|
AC_CHECK_FUNCS([chroot])
|
2008-12-12 13:41:36 +00:00
|
|
|
AC_CHECK_FUNCS([unshare])
|
2008-12-11 17:00:12 +00:00
|
|
|
AC_CHECK_HEADERS([sched.h], [], [], [])
|
2007-10-29 10:03:07 +00:00
|
|
|
AC_CHECK_HEADERS([sys/param.h], [], [], [])
|
|
|
|
AC_CHECK_HEADERS([sys/mount.h], [], [],
|
|
|
|
[#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
# endif
|
|
|
|
])
|
2007-10-27 16:51:55 +00:00
|
|
|
|
|
|
|
|
2009-01-12 16:30:32 +00:00
|
|
|
# Check for <locale>.
|
2003-12-22 16:40:46 +00:00
|
|
|
AC_LANG_PUSH(C++)
|
2007-10-29 10:03:07 +00:00
|
|
|
AC_CHECK_HEADERS([locale], [], [], [])
|
2003-12-22 16:40:46 +00:00
|
|
|
AC_LANG_POP(C++)
|
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2010-06-24 17:51:31 +00:00
|
|
|
# Check for <err.h>.
|
|
|
|
AC_CHECK_HEADER([err.h], [], [bsddiff_compat_include="-Icompat-include"])
|
|
|
|
AC_SUBST([bsddiff_compat_include])
|
|
|
|
|
2010-10-04 16:16:19 +00:00
|
|
|
|
2009-01-12 16:30:32 +00:00
|
|
|
# Check whether we have the personality() syscall, which allows us to
|
|
|
|
# do i686-linux builds on x86_64-linux machines.
|
|
|
|
AC_CHECK_HEADERS([sys/personality.h])
|
|
|
|
|
|
|
|
|
2010-10-04 16:16:19 +00:00
|
|
|
# Check for tr1/unordered_set.
|
|
|
|
AC_LANG_PUSH(C++)
|
|
|
|
AC_CHECK_HEADERS([tr1/unordered_set], [], [], [])
|
|
|
|
AC_LANG_POP(C++)
|
|
|
|
|
|
|
|
|
2004-04-06 08:40:19 +00:00
|
|
|
AC_DEFUN([NEED_PROG],
|
2004-04-23 15:16:08 +00:00
|
|
|
[
|
|
|
|
AC_PATH_PROG($1, $2)
|
2004-04-06 08:40:19 +00:00
|
|
|
if test -z "$$1"; then
|
2004-07-18 21:07:27 +00:00
|
|
|
AC_MSG_ERROR([$2 is required])
|
2004-04-06 08:40:19 +00:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
NEED_PROG(curl, curl)
|
2008-04-10 09:54:23 +00:00
|
|
|
NEED_PROG(bash, bash)
|
2006-09-20 15:28:47 +00:00
|
|
|
NEED_PROG(patch, patch)
|
2004-04-06 08:40:19 +00:00
|
|
|
AC_PATH_PROG(xmllint, xmllint, false)
|
|
|
|
AC_PATH_PROG(xsltproc, xsltproc, false)
|
2005-09-15 15:21:57 +00:00
|
|
|
AC_PATH_PROG(w3m, w3m, false)
|
2010-06-24 22:22:24 +00:00
|
|
|
AC_PATH_PROG(flex, flex, false)
|
|
|
|
AC_PATH_PROG(bison, bison, false)
|
2004-04-06 08:40:19 +00:00
|
|
|
NEED_PROG(perl, perl)
|
2010-03-05 18:26:47 +00:00
|
|
|
NEED_PROG(sed, sed)
|
2005-03-15 12:03:15 +00:00
|
|
|
NEED_PROG(tar, tar)
|
2006-02-22 13:55:41 +00:00
|
|
|
AC_PATH_PROG(dot, dot)
|
2007-11-01 14:42:44 +00:00
|
|
|
AC_PATH_PROG(dblatex, dblatex)
|
2008-05-07 14:18:28 +00:00
|
|
|
AC_PATH_PROG(gzip, gzip)
|
2006-10-19 19:20:18 +00:00
|
|
|
|
2007-03-01 13:30:46 +00:00
|
|
|
AC_PATH_PROG(openssl_prog, openssl, openssl) # if not found, call openssl in $PATH
|
|
|
|
AC_SUBST(openssl_prog)
|
|
|
|
AC_DEFINE_UNQUOTED(OPENSSL_PATH, ["$openssl_prog"], [Path of the OpenSSL binary])
|
|
|
|
|
2006-10-19 19:20:18 +00:00
|
|
|
# Test that Perl has the open/fork feature (Perl 5.8.0 and beyond).
|
|
|
|
AC_MSG_CHECKING([whether Perl is recent enough])
|
|
|
|
if ! $perl -e 'open(FOO, "-|", "true"); while (<FOO>) { print; }; close FOO or die;'; then
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_ERROR([Your Perl version is too old. Nix requires Perl 5.8.0 or newer.])
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
|
2005-03-21 10:06:11 +00:00
|
|
|
NEED_PROG(cat, cat)
|
2007-05-01 23:16:38 +00:00
|
|
|
NEED_PROG(tr, tr)
|
2005-03-15 12:03:15 +00:00
|
|
|
AC_ARG_WITH(coreutils-bin, AC_HELP_STRING([--with-coreutils-bin=PATH],
|
2005-03-21 10:06:11 +00:00
|
|
|
[path of cat, mkdir, etc.]),
|
|
|
|
coreutils=$withval, coreutils=$(dirname $cat))
|
2005-03-15 12:03:15 +00:00
|
|
|
AC_SUBST(coreutils)
|
2003-11-26 10:41:21 +00:00
|
|
|
|
2006-08-21 16:05:11 +00:00
|
|
|
AC_ARG_WITH(docbook-rng, AC_HELP_STRING([--with-docbook-rng=PATH],
|
|
|
|
[path of the DocBook RelaxNG schema]),
|
|
|
|
docbookrng=$withval, docbookrng=/docbook-rng-missing)
|
|
|
|
AC_SUBST(docbookrng)
|
2003-11-26 10:41:21 +00:00
|
|
|
|
|
|
|
AC_ARG_WITH(docbook-xsl, AC_HELP_STRING([--with-docbook-xsl=PATH],
|
|
|
|
[path of the DocBook XSL stylesheets]),
|
|
|
|
docbookxsl=$withval, docbookxsl=/docbook-xsl-missing)
|
|
|
|
AC_SUBST(docbookxsl)
|
|
|
|
|
2003-11-26 10:41:59 +00:00
|
|
|
AC_ARG_WITH(xml-flags, AC_HELP_STRING([--with-xml-flags=FLAGS],
|
2003-11-26 10:41:21 +00:00
|
|
|
[extra flags to be passed to xmllint and xsltproc]),
|
|
|
|
xmlflags=$withval, xmlflags=)
|
|
|
|
AC_SUBST(xmlflags)
|
2003-08-06 09:35:05 +00:00
|
|
|
|
2004-02-16 15:23:19 +00:00
|
|
|
AC_ARG_WITH(store-dir, AC_HELP_STRING([--with-store-dir=PATH],
|
|
|
|
[path of the Nix store]),
|
2008-11-20 14:14:35 +00:00
|
|
|
storedir=$withval, storedir='/nix/store')
|
2004-02-16 15:23:19 +00:00
|
|
|
AC_SUBST(storedir)
|
|
|
|
|
2006-02-13 19:52:43 +00:00
|
|
|
AC_ARG_WITH(openssl, AC_HELP_STRING([--with-openssl=PATH],
|
|
|
|
[prefix of the OpenSSL library]),
|
|
|
|
openssl=$withval, openssl=)
|
|
|
|
AM_CONDITIONAL(HAVE_OPENSSL, test -n "$openssl")
|
|
|
|
if test -n "$openssl"; then
|
|
|
|
LDFLAGS="-L$openssl/lib -lcrypto $LDFLAGS"
|
|
|
|
CFLAGS="-I$openssl/include $CFLAGS"
|
|
|
|
CXXFLAGS="-I$openssl/include $CXXFLAGS"
|
2008-06-09 13:52:45 +00:00
|
|
|
AC_DEFINE(HAVE_OPENSSL, 1, [Whether to use OpenSSL.])
|
2006-02-13 19:52:43 +00:00
|
|
|
fi
|
|
|
|
|
2006-02-01 16:48:49 +00:00
|
|
|
AC_ARG_WITH(bzip2, AC_HELP_STRING([--with-bzip2=PATH],
|
|
|
|
[prefix of bzip2]),
|
|
|
|
bzip2=$withval, bzip2=)
|
2006-04-25 10:45:53 +00:00
|
|
|
AM_CONDITIONAL(HAVE_BZIP2, test -n "$bzip2")
|
2006-02-01 16:48:49 +00:00
|
|
|
if test -z "$bzip2"; then
|
2006-04-25 10:45:53 +00:00
|
|
|
# Headers and libraries will be used from the temporary installation
|
|
|
|
# in externals/inst-bzip2.
|
|
|
|
bzip2_lib='-L${top_builddir}/externals/inst-bzip2/lib -lbz2'
|
|
|
|
bzip2_include='-I${top_builddir}/externals/inst-bzip2/include'
|
|
|
|
# The binary will be copied to $libexecdir.
|
2008-11-20 14:14:35 +00:00
|
|
|
bzip2_bin='${libexecdir}/nix'
|
2006-04-25 10:45:53 +00:00
|
|
|
# But for testing, we have to use the temporary copy :-(
|
|
|
|
bzip2_bin_test='${top_builddir}/externals/inst-bzip2/bin'
|
2006-02-01 16:48:49 +00:00
|
|
|
else
|
2006-04-25 10:45:53 +00:00
|
|
|
bzip2_lib="-L$bzip2/lib -lbz2"
|
|
|
|
bzip2_include="-I$bzip2/include"
|
|
|
|
bzip2_bin="$bzip2/bin"
|
|
|
|
bzip2_bin_test="$bzip2/bin"
|
2009-10-06 09:14:06 +00:00
|
|
|
fi
|
2006-02-01 16:48:49 +00:00
|
|
|
AC_SUBST(bzip2_lib)
|
|
|
|
AC_SUBST(bzip2_include)
|
|
|
|
AC_SUBST(bzip2_bin)
|
2006-04-25 10:45:53 +00:00
|
|
|
AC_SUBST(bzip2_bin_test)
|
2006-02-01 16:48:49 +00:00
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2010-10-22 13:39:15 +00:00
|
|
|
# Whether to use the Boehm garbage collector.
|
|
|
|
AC_ARG_WITH(boehm-gc, AC_HELP_STRING([--with-boehm-gc=PATH],
|
|
|
|
[prefix of the Boehm GC package to enable garbage collection in the Nix expression evaluator]),
|
|
|
|
boehmgc=$withval, boehmgc=)
|
|
|
|
if test -n "$boehmgc"; then
|
|
|
|
boehmgc_lib="-L$boehmgc/lib -lgc"
|
|
|
|
CXXFLAGS="-I$boehmgc/include $CXXFLAGS"
|
|
|
|
AC_DEFINE(HAVE_BOEHMGC, 1, [Whether to use the Boehm garbage collector.])
|
|
|
|
fi
|
|
|
|
AC_SUBST(boehmgc_lib)
|
|
|
|
AC_SUBST(boehmgc_include)
|
|
|
|
|
|
|
|
|
2004-04-21 10:54:46 +00:00
|
|
|
AC_ARG_ENABLE(init-state, AC_HELP_STRING([--disable-init-state],
|
|
|
|
[do not initialise DB etc. in `make install']),
|
|
|
|
init_state=$enableval, init_state=yes)
|
|
|
|
AM_CONDITIONAL(INIT_STATE, test "$init_state" = "yes")
|
|
|
|
|
* Setuid support for sharing a Nix installation between multiple
users.
If the configure flag `--enable-setuid' is used, the Nix programs
nix-env, nix-store, etc. are installed with the setuid bit turned on
so that they are executed as the user and group specified by
`--with-nix-user=USER' and `--with-nix-group=GROUP', respectively
(with defaults `nix' and `nix').
The setuid programs drop all special privileges if they are executed
by a user who is not a member of the Nix group.
The setuid feature is a quick hack to enable sharing of a Nix
installation between users who trust each other. It is not
generally secure, since any user in the Nix group can modify (by
building an appropriate derivation) any object in the store, and for
instance inject trojans into binaries used by other users.
The setuid programs are owned by root, not the Nix user. This is
because on Unix normal users cannot change the real uid, only the
effective uid. Many programs don't work properly when the real uid
differs from the effective uid. For instance, Perl will turn on
taint mode. However, the setuid programs drop all root privileges
immediately, changing all uids and gids to the Nix user and group.
2004-08-20 14:49:05 +00:00
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
# Setuid installations.
|
2006-12-07 18:51:11 +00:00
|
|
|
AC_CHECK_FUNCS([setresuid setreuid lchown])
|
2006-12-03 14:32:22 +00:00
|
|
|
|
2006-11-29 21:06:58 +00:00
|
|
|
|
2007-12-14 14:49:35 +00:00
|
|
|
# Nice to have, but not essential.
|
|
|
|
AC_CHECK_FUNCS([strsignal])
|
2009-03-22 17:36:43 +00:00
|
|
|
AC_CHECK_FUNCS([posix_fallocate])
|
2007-12-14 14:49:35 +00:00
|
|
|
|
|
|
|
|
2009-11-06 01:15:44 +00:00
|
|
|
# This is needed if ATerm or bzip2 are static libraries,
|
2005-09-21 11:12:43 +00:00
|
|
|
# and the Nix libraries are dynamic.
|
|
|
|
if test "$(uname)" = "Darwin"; then
|
2006-05-31 11:50:14 +00:00
|
|
|
LDFLAGS="-all_load $LDFLAGS"
|
2005-09-21 11:12:43 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2009-03-26 12:22:08 +00:00
|
|
|
if test "$static_nix" = yes; then
|
|
|
|
# `-all-static' has to be added at the end of configure, because
|
|
|
|
# the C compiler doesn't know about -all-static (it's filtered out
|
|
|
|
# by libtool, but configure doesn't use libtool).
|
2008-12-12 15:36:18 +00:00
|
|
|
LDFLAGS="-all-static $LDFLAGS"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2003-06-18 08:07:28 +00:00
|
|
|
AM_CONFIG_HEADER([config.h])
|
2003-10-20 10:05:01 +00:00
|
|
|
AC_CONFIG_FILES([Makefile
|
2003-09-11 10:23:55 +00:00
|
|
|
externals/Makefile
|
|
|
|
src/Makefile
|
2003-11-18 12:07:39 +00:00
|
|
|
src/bin2c/Makefile
|
2003-10-20 10:05:01 +00:00
|
|
|
src/boost/Makefile
|
|
|
|
src/boost/format/Makefile
|
2003-11-18 10:47:59 +00:00
|
|
|
src/libutil/Makefile
|
2003-11-18 10:55:27 +00:00
|
|
|
src/libstore/Makefile
|
2003-10-20 10:05:01 +00:00
|
|
|
src/libmain/Makefile
|
2003-11-18 11:38:25 +00:00
|
|
|
src/nix-store/Makefile
|
2003-10-20 10:05:01 +00:00
|
|
|
src/nix-hash/Makefile
|
2003-11-19 11:35:41 +00:00
|
|
|
src/libexpr/Makefile
|
2003-11-19 12:03:01 +00:00
|
|
|
src/nix-instantiate/Makefile
|
2003-11-19 17:27:16 +00:00
|
|
|
src/nix-env/Makefile
|
2006-11-30 19:19:59 +00:00
|
|
|
src/nix-worker/Makefile
|
2006-12-06 01:24:02 +00:00
|
|
|
src/nix-setuid-helper/Makefile
|
2005-10-05 09:42:13 +00:00
|
|
|
src/nix-log2xml/Makefile
|
2006-02-01 16:48:49 +00:00
|
|
|
src/bsdiff-4.3/Makefile
|
2003-09-11 10:23:55 +00:00
|
|
|
scripts/Makefile
|
2003-10-20 10:05:01 +00:00
|
|
|
corepkgs/Makefile
|
|
|
|
corepkgs/nar/Makefile
|
2003-11-22 21:12:36 +00:00
|
|
|
corepkgs/buildenv/Makefile
|
2004-04-21 14:54:05 +00:00
|
|
|
corepkgs/channels/Makefile
|
2003-10-20 10:05:01 +00:00
|
|
|
doc/Makefile
|
|
|
|
doc/manual/Makefile
|
2004-06-04 14:31:57 +00:00
|
|
|
misc/Makefile
|
|
|
|
misc/emacs/Makefile
|
2004-05-04 12:15:30 +00:00
|
|
|
tests/Makefile
|
2003-09-11 10:23:55 +00:00
|
|
|
])
|
2003-04-08 15:36:54 +00:00
|
|
|
AC_OUTPUT
|