lix/configure.ac
Eelco Dolstra 0791282b2f * Substitutes and nix-pull now work again.
* Fixed a segfault caused by the buffering of stderr.
* Fix now allows the specification of the full output path.  This
  should be used with great care, since it by-passes the normal hash
  generation.
* Incremented the version number to 0.4 (prerelease).
2003-10-16 16:29:57 +00:00

35 lines
703 B
Plaintext

AC_INIT(nix, "0.4")
AC_CONFIG_SRCDIR(src/nix.cc)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
# Put the revision number in the version.
if REVISION=`svnversion $srcdir 2> /dev/null`; then
if test "$REVISION" != "exported"; then
VERSION="$VERSION-r$REVISION"
fi
fi
AC_PREFIX_DEFAULT(/nix)
AC_CANONICAL_HOST
AC_PROG_CC
AC_PROG_CXX
AC_PROG_RANLIB
AC_PATH_PROG(wget, wget)
AC_CHECK_LIB(pthread, pthread_mutex_init)
AM_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([Makefile
externals/Makefile
boost/Makefile boost/format/Makefile
src/Makefile
scripts/Makefile
corepkgs/Makefile corepkgs/fetchurl/Makefile corepkgs/nar/Makefile
doc/Makefile doc/manual/Makefile
])
AC_OUTPUT