ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.6
Committed: Mon Mar 3 19:33:15 2003 UTC (21 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_3
Changes since 1.5: +4 -4 lines
Log Message:
Update version numbers. It seems to make sense to increment version numbers
just after a release. Then you're working towards the next version...

File Contents

# User Rev Content
1 tdb 1.4 # -*- Autoconf -*-
2     # Process this file with autoconf to produce a configure script.
3     #
4     # configure.in for libstatgrab
5 tdb 1.6 # $Id: configure.in,v 1.5 2003/03/03 12:33:06 tdb Exp $
6 tdb 1.4 #
7 tdb 1.1
8 tdb 1.4 # Change these to change the package name and version
9 tdb 1.6 AC_INIT(libstatgrab, 0.3, dev@i-scream.org.uk)
10     AM_INIT_AUTOMAKE(libstatgrab, 0.3)
11 tdb 1.1
12 tdb 1.4 # Revision number (automatically updated)
13 tdb 1.6 AC_REVISION($Revision: 1.5 $)
14 tdb 1.1
15 tdb 1.4 # 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 tdb 1.1 AC_PROG_CC
23     AC_PROG_INSTALL
24 tdb 1.2 AC_PROG_LIBTOOL
25 tdb 1.1
26 tdb 1.4 # Checks for header files
27 tdb 1.1 AC_HEADER_STDC
28    
29 tdb 1.4 # Checks for typedefs, structures, and compiler characteristics
30     AC_C_CONST
31 tdb 1.1
32 tdb 1.4 # Checks for library functions
33     AC_FUNC_MALLOC
34     AC_FUNC_REALLOC
35    
36     # Set things up for different OS's
37     # We define the name of the OS so the code can act accordingly
38     # We also need to add the right LDFLAGS
39 tdb 1.1 case $host_os in
40     solaris2.*)
41 tdb 1.4 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
42 tdb 1.1 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
43     LDFLAGS="$LDFLAGS -lkstat"
44     ;;
45     freebsd4.*)
46     AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x])
47     LDFLAGS="$LDFLAGS -lkvm"
48     ;;
49     linux-gnu)
50     AC_DEFINE(LINUX, , [Building on GNU/Linux])
51     ;;
52     *)
53     AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
54     ;;
55     esac
56    
57 tdb 1.4 # And finish by changing these files
58     AC_CONFIG_FILES([Makefile src/Makefile])
59    
60     AC_OUTPUT