ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.45
Committed: Thu Nov 20 12:13:11 2003 UTC (20 years, 4 months ago) by tdb
Branch: MAIN
Changes since 1.44: +4 -4 lines
Log Message:
Turn on the solaris disk mapping code. Fix some minor bugs, and remove
some debugging code.

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.44 2003/11/10 23:25:44 ats Exp $
6 #
7
8 # Change these to change the package name and version
9 AC_INIT(libstatgrab, 0.7.1, bugs@i-scream.org)
10 AM_INIT_AUTOMAKE(libstatgrab, 0.7.1)
11
12 # Revision number (automatically updated)
13 AC_REVISION($Revision: 1.44 $)
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 # Disk IO read and write statistics are only present on recent NetBSD.
38 AC_CHECK_MEMBER(struct disk_sysctl.dk_rbytes,
39 [AC_DEFINE(HAVE_DK_RBYTES, , [New-style NetBSD stats])],
40 [],
41 [#include <sys/disk.h>])
42
43 # Default needing setgid to false
44 AM_CONDITIONAL(SETGIDBINS, false)
45
46 # Set things up for different OS's
47 # We define the name of the OS so the code can act accordingly
48 # We also need to add the right LDFLAGS
49 case $host_os in
50 solaris2.[[6-7]])
51 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
52 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
53 AC_DEFINE(SOL7, , [Building on Solaris 2.7])
54 LINKFLAGS="-lkstat -ldevinfo"
55 ;;
56 solaris2.*)
57 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
58 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
59 LINKFLAGS="-lkstat -ldevinfo"
60 ;;
61 freebsd4.*)
62 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
63 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
64 AM_CONDITIONAL(SETGIDBINS, true)
65 LINKFLAGS="-lkvm -ldevstat"
66 ;;
67 freebsd5.*)
68 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
69 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
70 AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
71 AM_CONDITIONAL(SETGIDBINS, true)
72 LINKFLAGS="-lkvm -ldevstat"
73 ;;
74 netbsdelf*)
75 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
76 AC_DEFINE(NETBSD, , [Building on NetBSD])
77 AM_CONDITIONAL(SETGIDBINS, true)
78 LINKFLAGS="-lkvm"
79 ;;
80 linux-gnu)
81 AC_DEFINE(LINUX, , [Building on GNU/Linux])
82 ;;
83 cygwin)
84 AC_DEFINE(CYGWIN, , [Building on Cygwin])
85 ;;
86 *)
87 AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
88 ;;
89 esac
90
91 # User specified curses/ncurses prefix
92 AC_ARG_WITH([curses-prefix],
93 [ --with-curses-prefix=PATH curses (or ncurses) is in PATH],
94 [
95 if test -d "$withval/lib"; then
96 SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
97 fi
98 if test -d "$withval/include"; then
99 SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
100 fi
101 ]
102 )
103
104 # Check if user wants to disable statgrab
105 AM_CONDITIONAL(STATGRAB, true)
106 AC_ARG_ENABLE(statgrab,
107 [ --disable-statgrab disable building of statgrab],
108 [
109 if test "x$enableval" = "xno" ; then
110 AM_CONDITIONAL(STATGRAB, false)
111 fi
112 ]
113 )
114
115 # Check if user wants to disable saidar
116 AM_CONDITIONAL(SAIDAR, true)
117 AC_ARG_ENABLE(saidar,
118 [ --disable-saidar disable building of saidar],
119 [
120 if test "x$enableval" = "xno" ; then
121 AM_CONDITIONAL(SAIDAR, false)
122 fi
123 ],
124 [
125 # saidar needs curses
126 # (if we don't find curses we disable saidar)
127 MP_WITH_CURSES
128 ]
129 )
130
131 # Check if the user would prefer not to build examples
132 AM_CONDITIONAL(EXAMPLES, true)
133 AC_ARG_ENABLE(examples,
134 [ --disable-examples disable building of examples],
135 [
136 if test "x$enableval" = "xno" ; then
137 AM_CONDITIONAL(EXAMPLES, false)
138 fi
139 ]
140 )
141
142 # Check if user wants to install manpages
143 AM_CONDITIONAL(MANPAGES, true)
144 AC_ARG_ENABLE(manpages,
145 [ --disable-manpages disable installation of manpages],
146 [
147 if test "x$enableval" = "xno" ; then
148 AM_CONDITIONAL(MANPAGES, false)
149 fi
150 ]
151 )
152
153 # Check if the user wants to turn off setgid binaries
154 # (only really relevant on FreeBSD)
155 AC_ARG_ENABLE(setgid-binaries,
156 [ --disable-setgid-binaries disable binaries being setgid],
157 [
158 if test "x$enableval" = "xno" ; then
159 AM_CONDITIONAL(SETGIDBINS, false)
160 fi
161 ]
162 )
163
164 # The LIBS and CPPFLAGS that saidar needs
165 AC_SUBST(SAIDARLIBS)
166 AC_SUBST(SAIDARCPPFLAGS)
167
168 # The flags needed to link to libstatgrab
169 # (ie. our dependencies)
170 AC_SUBST(LINKFLAGS)
171
172 # And finish by changing these files
173 AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index src/saidar/Makefile])
174
175 AC_OUTPUT