ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.23
Committed: Mon Aug 25 12:41:38 2003 UTC (20 years, 8 months ago) by tdb
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_5
Changes since 1.22: +4 -4 lines
Log Message:
Ready for the next release.

 - Update NEWS with details of new release.
   (FreeBSD bug fix, new docs, new examples)
 - Update version number to 0.5.
 - Update shared library version.
 - Move docs directory to more sensible place.

File Contents

# Content
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 #
4 # configure.in for libstatgrab
5 # $Id: configure.in,v 1.22 2003/08/21 20:48:26 tdb Exp $
6 #
7
8 # Change these to change the package name and version
9 AC_INIT(libstatgrab, 0.5, bugs@i-scream.org)
10 AM_INIT_AUTOMAKE(libstatgrab, 0.5)
11
12 # Revision number (automatically updated)
13 AC_REVISION($Revision: 1.22 $)
14
15 # Might work with older autoconfs... but tested on 2.57
16 AC_PREREQ(2.57)
17
18 # The file we use to pass #define's to the source
19 AM_CONFIG_HEADER([config.h])
20
21 # Checks for programs
22 AC_PROG_CC
23 AC_PROG_INSTALL
24 AC_PROG_LIBTOOL
25
26 # Checks for header files
27 AC_HEADER_STDC
28
29 # Checks for typedefs, structures, and compiler characteristics
30 AC_C_CONST
31
32 # Checks for library functions
33 AC_FUNC_MALLOC
34 AC_FUNC_REALLOC
35 AC_CHECK_FUNCS(atoll)
36
37 # Set things up for different OS's
38 # We define the name of the OS so the code can act accordingly
39 # We also need to add the right LDFLAGS
40 case $host_os in
41 solaris2.[[6-7]])
42 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
43 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
44 AC_DEFINE(SOL7, , [Building on Solaris 2.7])
45 LDFLAGS="$LDFLAGS -lkstat"
46 ;;
47 solaris2.*)
48 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
49 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
50 LDFLAGS="$LDFLAGS -lkstat"
51 ;;
52 freebsd4.*)
53 AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x])
54 LDFLAGS="$LDFLAGS -lkvm -ldevstat"
55 ;;
56 linux-gnu)
57 AC_DEFINE(LINUX, , [Building on GNU/Linux])
58 ;;
59 *)
60 AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
61 ;;
62 esac
63
64 # And finish by changing these files
65 AC_CONFIG_FILES([Makefile src/Makefile docs/Makefile examples/Makefile])
66
67 AC_OUTPUT