about summary refs log blame commit diff
path: root/configure.ac
blob: 8c878f2e30a508acc8d8fc24a922c5dfe07145ad (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                   



                            






                                                   





                       
              
 

                        

                                         
                            







                                                                     
         
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