2003-10-16 18:29:57 +02:00
|
|
|
AC_INIT(nix, "0.4")
|
2003-10-20 12:05:01 +02:00
|
|
|
AC_CONFIG_SRCDIR(README)
|
2003-04-04 18:14:56 +02:00
|
|
|
AC_CONFIG_AUX_DIR(config)
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
|
2003-09-23 16:26:58 +02:00
|
|
|
# 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
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
AC_PREFIX_DEFAULT(/nix)
|
|
|
|
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CXX
|
2003-06-20 12:53:04 +02:00
|
|
|
AC_PROG_RANLIB
|
2003-04-04 18:14:56 +02:00
|
|
|
|
2003-08-06 11:35:05 +02:00
|
|
|
AC_PATH_PROG(wget, wget)
|
|
|
|
|
2003-07-28 16:13:42 +02:00
|
|
|
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
|
2003-09-11 12:23:55 +02:00
|
|
|
externals/Makefile
|
|
|
|
src/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-10-20 12:05:01 +02:00
|
|
|
src/libnix/Makefile
|
|
|
|
src/libmain/Makefile
|
|
|
|
src/nix/Makefile
|
|
|
|
src/nix-hash/Makefile
|
2003-10-29 16:05:18 +01:00
|
|
|
src/fix-ng/Makefile
|
2003-09-11 12:23:55 +02:00
|
|
|
scripts/Makefile
|
2003-10-20 12:05:01 +02:00
|
|
|
corepkgs/Makefile
|
|
|
|
corepkgs/fetchurl/Makefile
|
|
|
|
corepkgs/nar/Makefile
|
|
|
|
doc/Makefile
|
|
|
|
doc/manual/Makefile
|
2003-09-11 12:23:55 +02:00
|
|
|
])
|
2003-04-08 17:36:54 +02:00
|
|
|
AC_OUTPUT
|