2014-01-09 16:33:55 +00:00
|
|
|
AC_INIT(nix, m4_esyscmd([bash -c "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)
|
2006-03-01 12:15:33 +00:00
|
|
|
|
2011-11-16 20:39:59 +00:00
|
|
|
AC_PROG_SED
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2003-12-01 14:36:50 +00:00
|
|
|
# Construct a Nix system name (like "i686-linux").
|
2011-11-16 20:39:59 +00:00
|
|
|
AC_CANONICAL_HOST
|
2003-12-01 14:36:50 +00:00
|
|
|
AC_MSG_CHECKING([for the canonical Nix system name])
|
2006-05-31 11:50:14 +00:00
|
|
|
|
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').]),
|
2011-11-16 20:39:59 +00:00
|
|
|
[system=$withval],
|
2011-11-16 20:58:21 +00:00
|
|
|
[case "$host_cpu" in
|
|
|
|
i*86)
|
|
|
|
machine_name="i686";;
|
2011-11-18 17:25:40 +00:00
|
|
|
amd64)
|
|
|
|
machine_name="x86_64";;
|
2011-11-16 20:58:21 +00:00
|
|
|
*)
|
|
|
|
machine_name="$host_cpu";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "$host_os" in
|
2011-11-16 20:39:59 +00:00
|
|
|
linux-gnu*)
|
2012-08-27 15:28:48 +00:00
|
|
|
# For backward compatibility, strip the `-gnu' part.
|
|
|
|
system="$machine_name-linux";;
|
2011-11-16 20:39:59 +00:00
|
|
|
*)
|
|
|
|
# Strip the version number from names such as `gnu0.3',
|
|
|
|
# `darwin10.2.0', etc.
|
2012-08-27 15:28:48 +00:00
|
|
|
system="$machine_name-`echo $host_os | "$SED" -e's/@<:@0-9.@:>@*$//g'`";;
|
2011-11-16 20:39:59 +00:00
|
|
|
esac])
|
|
|
|
|
2011-11-21 12:23:48 +00:00
|
|
|
sys_name=$(uname -s | tr 'A-Z ' 'a-z_')
|
|
|
|
|
|
|
|
case $sys_name in
|
|
|
|
cygwin*)
|
|
|
|
sys_name=cygwin
|
|
|
|
;;
|
|
|
|
esac
|
2012-08-27 15:28:48 +00:00
|
|
|
|
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-10-08 14:50:37 +00:00
|
|
|
# Solaris-specific stuff.
|
2011-11-21 13:22:34 +00:00
|
|
|
if test "$sys_name" = sunos; then
|
2009-10-08 14:50:37 +00:00
|
|
|
# Solaris requires -lsocket -lnsl for network functions
|
2010-02-24 12:25:48 +00:00
|
|
|
LIBS="-lsocket -lnsl $LIBS"
|
2009-10-08 14:50:37 +00:00
|
|
|
fi
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2010-03-02 16:40:40 +00:00
|
|
|
|
2014-09-17 15:07:05 +00:00
|
|
|
CFLAGS=
|
|
|
|
CXXFLAGS=
|
2003-04-04 16:14:56 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CXX
|
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])
|
2013-03-08 00:39:55 +00:00
|
|
|
AC_CHECK_FUNCS([statvfs])
|
2012-02-15 00:31:56 +00:00
|
|
|
AC_CHECK_HEADERS([sched.h])
|
|
|
|
AC_CHECK_HEADERS([sys/param.h])
|
2007-10-29 10:03:07 +00:00
|
|
|
AC_CHECK_HEADERS([sys/mount.h], [], [],
|
|
|
|
[#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
# endif
|
|
|
|
])
|
2015-02-13 16:05:49 +00:00
|
|
|
AC_CHECK_HEADERS([sys/syscall.h])
|
2007-10-27 16:51:55 +00:00
|
|
|
|
|
|
|
|
2012-07-23 20:52:25 +00:00
|
|
|
# Check for lutimes, optionally used for changing the mtime of
|
|
|
|
# symlinks.
|
|
|
|
AC_CHECK_FUNCS([lutimes])
|
|
|
|
|
|
|
|
|
2013-08-07 11:51:55 +00:00
|
|
|
# Check for sched_setaffinity.
|
|
|
|
AC_CHECK_FUNCS([sched_setaffinity])
|
|
|
|
|
|
|
|
|
2012-07-23 22:42:18 +00:00
|
|
|
# Check whether the store optimiser can optimise symlinks.
|
|
|
|
AC_MSG_CHECKING([whether it is possible to create a link to a symlink])
|
|
|
|
ln -s bla tmp_link
|
|
|
|
if ln tmp_link tmp_link2 2> /dev/null; then
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(CAN_LINK_SYMLINK, 1, [Whether link() works on symlinks.])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
rm -f tmp_link tmp_link2
|
|
|
|
|
|
|
|
|
2009-01-12 16:30:32 +00:00
|
|
|
# Check for <locale>.
|
2003-12-22 16:40:46 +00:00
|
|
|
AC_LANG_PUSH(C++)
|
2012-02-15 00:31:56 +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
|
|
|
|
2012-02-15 00:31:56 +00:00
|
|
|
# Check for <linux/fs.h> (for immutable file support).
|
|
|
|
AC_CHECK_HEADERS([linux/fs.h])
|
|
|
|
|
|
|
|
|
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)
|
2004-01-30 16:32:14 +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)
|
2012-03-18 22:54:57 +00:00
|
|
|
NEED_PROG(bzip2, bzip2)
|
2013-05-14 13:10:14 +00:00
|
|
|
NEED_PROG(gzip, gzip)
|
2012-06-29 18:26:31 +00:00
|
|
|
NEED_PROG(xz, xz)
|
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)
|
2012-04-13 12:41:33 +00:00
|
|
|
AC_PATH_PROG(pv, pv, pv)
|
2006-10-19 19:20:18 +00:00
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
|
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)
|
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
|
2012-01-05 20:33:46 +00:00
|
|
|
# Figure out where to install Perl modules.
|
|
|
|
AC_MSG_CHECKING([for the Perl installation prefix])
|
|
|
|
perlversion=$($perl -e 'use Config; print $Config{version};')
|
|
|
|
perlarchname=$($perl -e 'use Config; print $Config{archname};')
|
2013-11-25 15:51:22 +00:00
|
|
|
AC_SUBST(perllibdir, [${libdir}/perl5/site_perl/$perlversion/$perlarchname])
|
2012-01-05 20:33:46 +00:00
|
|
|
AC_MSG_RESULT($perllibdir)
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
|
2004-02-16 15:23:19 +00:00
|
|
|
AC_ARG_WITH(store-dir, AC_HELP_STRING([--with-store-dir=PATH],
|
2011-07-13 15:57:44 +00:00
|
|
|
[path of the Nix store (defaults to /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)
|
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
|
2012-03-18 22:54:57 +00:00
|
|
|
# Look for OpenSSL, an optional dependency.
|
2014-01-21 16:39:19 +00:00
|
|
|
AC_PATH_PROG(openssl, openssl, openssl) # if not found, call openssl in $PATH
|
|
|
|
AC_SUBST(openssl)
|
|
|
|
AC_DEFINE_UNQUOTED(OPENSSL_PATH, ["$openssl"], [Path of the OpenSSL binary])
|
2006-02-13 19:52:43 +00:00
|
|
|
|
2012-03-18 22:54:57 +00:00
|
|
|
PKG_CHECK_MODULES([OPENSSL], [libcrypto],
|
|
|
|
[AC_DEFINE([HAVE_OPENSSL], [1], [Whether to use OpenSSL.])
|
|
|
|
CXXFLAGS="$OPENSSL_CFLAGS $CXXFLAGS"
|
2013-11-22 19:30:24 +00:00
|
|
|
have_openssl=1], [have_openssl=])
|
|
|
|
AC_SUBST(HAVE_OPENSSL, [$have_openssl])
|
2011-04-11 10:13:53 +00:00
|
|
|
|
2012-03-18 22:54:57 +00:00
|
|
|
|
|
|
|
# Look for libbz2, a required dependency.
|
|
|
|
AC_CHECK_LIB([bz2], [BZ2_bzWriteOpen], [true],
|
|
|
|
[AC_MSG_ERROR([Nix requires libbz2, which is part of bzip2. See http://www.bzip.org/.])])
|
|
|
|
AC_CHECK_HEADERS([bzlib.h], [true],
|
|
|
|
[AC_MSG_ERROR([Nix requires libbz2, which is part of bzip2. See http://www.bzip.org/.])])
|
|
|
|
|
|
|
|
|
|
|
|
# Look for SQLite, a required dependency.
|
2012-05-04 21:21:43 +00:00
|
|
|
PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= 3.6.19], [CXXFLAGS="$SQLITE3_CFLAGS $CXXFLAGS"])
|
2003-07-28 14:13:42 +00:00
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
|
2015-03-27 11:27:36 +00:00
|
|
|
# Look for libcurl, a required dependency.
|
|
|
|
PKG_CHECK_MODULES([LIBCURL], [libcurl], [CXXFLAGS="$LIBCURL_CFLAGS $CXXFLAGS"])
|
|
|
|
|
|
|
|
|
2015-02-10 10:54:06 +00:00
|
|
|
# Look for libsodium, an optional dependency.
|
|
|
|
PKG_CHECK_MODULES([SODIUM], [libsodium],
|
|
|
|
[AC_DEFINE([HAVE_SODIUM], [1], [Whether to use libsodium for cryptography.])
|
|
|
|
CXXFLAGS="$SODIUM_CFLAGS $CXXFLAGS"
|
|
|
|
have_sodium=1], [have_sodium=])
|
|
|
|
AC_SUBST(HAVE_SODIUM, [$have_sodium])
|
2015-02-04 15:43:32 +00:00
|
|
|
|
|
|
|
|
2010-10-22 13:39:15 +00:00
|
|
|
# Whether to use the Boehm garbage collector.
|
2010-10-29 14:00:47 +00:00
|
|
|
AC_ARG_ENABLE(gc, AC_HELP_STRING([--enable-gc],
|
2012-05-10 23:03:23 +00:00
|
|
|
[enable garbage collection in the Nix expression evaluator (requires Boehm GC) [default=no]]),
|
2012-01-04 12:45:40 +00:00
|
|
|
gc=$enableval, gc=no)
|
|
|
|
if test "$gc" = yes; then
|
2010-10-29 14:00:47 +00:00
|
|
|
PKG_CHECK_MODULES([BDW_GC], [bdw-gc])
|
|
|
|
CXXFLAGS="$BDW_GC_CFLAGS $CXXFLAGS"
|
2010-10-22 13:39:15 +00:00
|
|
|
AC_DEFINE(HAVE_BOEHMGC, 1, [Whether to use the Boehm garbage collector.])
|
|
|
|
fi
|
2010-10-29 14:00:47 +00:00
|
|
|
|
2006-05-31 11:50:14 +00:00
|
|
|
|
2012-08-27 15:28:48 +00:00
|
|
|
# Check for the required Perl dependencies (DBI, DBD::SQLite and WWW::Curl).
|
2012-01-05 20:33:46 +00:00
|
|
|
perlFlags="-I$perllibdir"
|
2011-10-10 21:11:08 +00:00
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
AC_ARG_WITH(dbi, AC_HELP_STRING([--with-dbi=PATH],
|
|
|
|
[prefix of the Perl DBI library]),
|
|
|
|
perlFlags="$perlFlags -I$withval")
|
|
|
|
|
|
|
|
AC_ARG_WITH(dbd-sqlite, AC_HELP_STRING([--with-dbd-sqlite=PATH],
|
|
|
|
[prefix of the Perl DBD::SQLite library]),
|
|
|
|
perlFlags="$perlFlags -I$withval")
|
|
|
|
|
2012-07-09 17:11:37 +00:00
|
|
|
AC_ARG_WITH(www-curl, AC_HELP_STRING([--with-www-curl=PATH],
|
|
|
|
[prefix of the Perl WWW::Curl library]),
|
|
|
|
perlFlags="$perlFlags -I$withval")
|
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
AC_MSG_CHECKING([whether DBD::SQLite works])
|
|
|
|
if ! $perl $perlFlags -e 'use DBI; use DBD::SQLite;' 2>&5; then
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_FAILURE([The Perl modules DBI and/or DBD::SQLite are missing.])
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT(yes)
|
2012-08-27 15:28:48 +00:00
|
|
|
|
2012-07-09 17:11:37 +00:00
|
|
|
AC_MSG_CHECKING([whether WWW::Curl works])
|
|
|
|
if ! $perl $perlFlags -e 'use WWW::Curl;' 2>&5; then
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_FAILURE([The Perl module WWW::Curl is missing.])
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT(yes)
|
2012-08-27 15:28:48 +00:00
|
|
|
|
2011-04-11 10:13:53 +00:00
|
|
|
AC_SUBST(perlFlags)
|
|
|
|
|
|
|
|
|
2012-05-10 23:03:23 +00:00
|
|
|
# Whether to build the Perl bindings
|
|
|
|
AC_MSG_CHECKING([whether to build the Perl bindings])
|
|
|
|
AC_ARG_ENABLE(perl-bindings, AC_HELP_STRING([--enable-perl-bindings],
|
|
|
|
[whether to build the Perl bindings (recommended) [default=yes]]),
|
|
|
|
perlbindings=$enableval, perlbindings=yes)
|
|
|
|
if test "$enable_shared" = no; then
|
|
|
|
# Perl bindings require shared libraries.
|
|
|
|
perlbindings=no
|
|
|
|
fi
|
|
|
|
AC_SUBST(perlbindings)
|
|
|
|
AC_MSG_RESULT($perlbindings)
|
|
|
|
|
|
|
|
|
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)
|
2013-11-22 19:30:24 +00:00
|
|
|
#AM_CONDITIONAL(INIT_STATE, test "$init_state" = "yes")
|
2004-04-21 10:54:46 +00:00
|
|
|
|
* 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.
|
2011-02-10 14:31:04 +00:00
|
|
|
AC_CHECK_FUNCS([strsignal posix_fallocate nanosleep sysconf])
|
2007-12-14 14:49:35 +00:00
|
|
|
|
|
|
|
|
2012-03-18 22:54:57 +00:00
|
|
|
# This is needed if bzip2 is a static library, and the Nix libraries
|
|
|
|
# are dynamic.
|
2005-09-21 11:12:43 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
|
2012-01-11 15:41:42 +00:00
|
|
|
# Figure out the extension of dynamic libraries.
|
|
|
|
eval dynlib_suffix=$shrext_cmds
|
|
|
|
AC_SUBST(dynlib_suffix)
|
|
|
|
|
|
|
|
|
2012-08-01 20:42:51 +00:00
|
|
|
# Do we have GNU tar?
|
2012-09-14 14:18:27 +00:00
|
|
|
AC_MSG_CHECKING([if you have a recent GNU tar])
|
2012-10-10 09:10:28 +00:00
|
|
|
if $tar --version 2> /dev/null | grep -q GNU && tar cvf /dev/null --warning=no-timestamp ./config.log > /dev/null; then
|
2012-08-01 20:42:51 +00:00
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
tarFlags="--warning=no-timestamp"
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
AC_SUBST(tarFlags)
|
|
|
|
|
|
|
|
|
2013-11-25 15:51:22 +00:00
|
|
|
# Expand all variables in config.status.
|
|
|
|
test "$prefix" = NONE && prefix=$ac_default_prefix
|
|
|
|
test "$exec_prefix" = NONE && exec_prefix='${prefix}'
|
|
|
|
for name in $ac_subst_vars; do
|
|
|
|
declare $name="$(eval echo "${!name}")"
|
|
|
|
declare $name="$(eval echo "${!name}")"
|
|
|
|
declare $name="$(eval echo "${!name}")"
|
|
|
|
done
|
|
|
|
|
2014-09-22 10:50:38 +00:00
|
|
|
rm -f Makefile.config
|
|
|
|
|
2013-11-22 19:30:24 +00:00
|
|
|
AC_CONFIG_HEADER([config.h])
|
2013-11-25 10:56:14 +00:00
|
|
|
AC_CONFIG_FILES([])
|
2003-04-08 15:36:54 +00:00
|
|
|
AC_OUTPUT
|