1 |
< |
dnl configure.in for libstatgrab |
2 |
< |
dnl $Id$ |
1 |
> |
# -*- Autoconf -*- |
2 |
> |
# Process this file with autoconf to produce a configure script. |
3 |
> |
# |
4 |
> |
# configure.in for libstatgrab |
5 |
> |
# $Id$ |
6 |
> |
# |
7 |
|
|
8 |
< |
dnl Change these to change the package name and version |
9 |
< |
AC_INIT(libstatgrab, 0.1, dev@i-scream.org.uk) |
10 |
< |
AM_INIT_AUTOMAKE(libstatgrab, 0.1) |
8 |
> |
# Change these to change the package name and version |
9 |
> |
AC_INIT(libstatgrab, 0.2, dev@i-scream.org.uk) |
10 |
> |
AM_INIT_AUTOMAKE(libstatgrab, 0.2) |
11 |
|
|
12 |
< |
dnl The file we use to pass #define's to the source |
13 |
< |
AC_CONFIG_HEADER(config.h) |
12 |
> |
# Revision number (automatically updated) |
13 |
> |
AC_REVISION($Revision$) |
14 |
|
|
15 |
< |
dnl We need a CC, install, and libtool |
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 |
< |
dnl And we probably need the standard C bits |
26 |
> |
# Checks for header files |
27 |
|
AC_HEADER_STDC |
28 |
|
|
29 |
< |
dnl The program needs to know whether it can use getloadavg |
30 |
< |
AC_CHECK_FUNCS(getloadavg) |
29 |
> |
# Checks for typedefs, structures, and compiler characteristics |
30 |
> |
AC_C_CONST |
31 |
|
|
32 |
< |
dnl Set things up for different OS's |
33 |
< |
dnl We define the name of the OS so the code can act accordingly |
34 |
< |
dnl We also need to add the right LDFLAGS |
32 |
> |
# 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 |
|
case $host_os in |
40 |
|
solaris2.*) |
41 |
+ |
AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])]) |
42 |
|
AC_DEFINE(SOLARIS, , [Building on Solaris 2.x]) |
43 |
|
LDFLAGS="$LDFLAGS -lkstat" |
44 |
|
;; |
54 |
|
;; |
55 |
|
esac |
56 |
|
|
57 |
< |
dnl And finish by changing these files |
58 |
< |
AC_OUTPUT([Makefile src/Makefile]) |
57 |
> |
# And finish by changing these files |
58 |
> |
AC_CONFIG_FILES([Makefile src/Makefile]) |
59 |
> |
|
60 |
> |
AC_OUTPUT |