nix-gh/configure.ac

49 lines
1.0 KiB
Plaintext
Raw Normal View History

AC_INIT(nix, "0.5")
2003-10-20 12:05:01 +02:00
AC_CONFIG_SRCDIR(README)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
# Put the revision number in the version.
if REVISION=`test -d $srcdir/.svn && svnversion $srcdir 2> /dev/null`; then
VERSION="$VERSION-r$REVISION"
elif REVISION=`cat $srcdir/svn-revision 2> /dev/null`; then
VERSION="$VERSION-r$REVISION"
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)
2003-06-18 10:07:28 +02:00
AM_CONFIG_HEADER([config.h])
2003-10-20 12:05:01 +02:00
AC_CONFIG_FILES([Makefile
externals/Makefile
src/Makefile
2003-11-18 13:07:39 +01:00
src/bin2c/Makefile
2003-10-20 12:05:01 +02:00
src/boost/Makefile
src/boost/format/Makefile
2003-11-18 11:47:59 +01:00
src/libutil/Makefile
2003-11-18 11:55:27 +01:00
src/libstore/Makefile
2003-10-20 12:05:01 +02:00
src/libmain/Makefile
src/nix-store/Makefile
2003-10-20 12:05:01 +02:00
src/nix-hash/Makefile
src/libexpr/Makefile
2003-11-19 13:03:01 +01:00
src/nix-instantiate/Makefile
src/nix-env/Makefile
scripts/Makefile
2003-10-20 12:05:01 +02:00
corepkgs/Makefile
corepkgs/fetchurl/Makefile
corepkgs/nar/Makefile
2003-11-22 22:12:36 +01:00
corepkgs/buildenv/Makefile
2003-10-20 12:05:01 +02:00
doc/Makefile
doc/manual/Makefile
])
2003-04-08 17:36:54 +02:00
AC_OUTPUT