--- projects/libstatgrab/configure.in 2003/02/18 22:01:48 1.1 +++ projects/libstatgrab/configure.in 2003/02/19 23:09:48 1.3 @@ -1,17 +1,17 @@ dnl configure.in for libstatgrab -dnl $Id: configure.in,v 1.1 2003/02/18 22:01:48 tdb Exp $ +dnl $Id: configure.in,v 1.3 2003/02/19 23:09:48 tdb Exp $ dnl Change these to change the package name and version AC_INIT(libstatgrab, 0.1, dev@i-scream.org.uk) AM_INIT_AUTOMAKE(libstatgrab, 0.1) dnl The file we use to pass #define's to the source -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADER(config.h) -dnl We need a CC, install, and ranlib +dnl We need a CC, install, and libtool AC_PROG_CC AC_PROG_INSTALL -AC_PROG_RANLIB +AC_PROG_LIBTOOL dnl And we probably need the standard C bits AC_HEADER_STDC @@ -19,9 +19,6 @@ AC_HEADER_STDC dnl The program needs to know whether it can use getloadavg AC_CHECK_FUNCS(getloadavg) -dnl Figure out details about the host - we need the OS -AC_CANONICAL_HOST - dnl Set things up for different OS's dnl We define the name of the OS so the code can act accordingly dnl We also need to add the right LDFLAGS @@ -43,4 +40,4 @@ linux-gnu) esac dnl And finish by changing these files -AC_OUTPUT([Makefile]) +AC_OUTPUT([Makefile src/Makefile])