ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.63
Committed: Sat Apr 3 21:05:47 2004 UTC (19 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.62: +3 -3 lines
Log Message:
Now need -lkvm on FreeBSD 5.

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.62 2004/03/09 18:57:45 tdb Exp $
6 #
7
8 # Change these to change the package name and version
9 AC_INIT(libstatgrab, 0.9.1, bugs@i-scream.org)
10 AM_INIT_AUTOMAKE(libstatgrab, 0.9.1)
11
12 # Revision number (automatically updated)
13 AC_REVISION($Revision: 1.62 $)
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 # Check for sys/loadavg.h
44 AC_CHECK_HEADERS([sys/loadavg.h])
45
46 # Check for libdevinfo.h
47 AC_CHECK_HEADERS([libdevinfo.h])
48
49 # Default needing setgid/setuid to false
50 AM_CONDITIONAL(SETGIDBINS, false)
51 AM_CONDITIONAL(SETUIDBINS, false)
52
53 # Set things up for different OS's
54 # We define the name of the OS so the code can act accordingly
55 # We also need to add the right LDFLAGS
56 case $host_os in
57 solaris2.[[6-7]])
58 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
59 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
60 AC_DEFINE(SOL7, , [Building on Solaris 2.6 or 2.7])
61 AM_CONDITIONAL(SETUIDBINS, true)
62 LINKFLAGS="-lkstat -lsocket -lnsl"
63 AC_CHECK_LIB(devinfo, di_init, [LINKFLAGS="$LINKFLAGS -ldevinfo"])
64 ;;
65 solaris2.*)
66 AC_CHECK_HEADERS([kstat.h],,[AC_MSG_ERROR([need kstat.h])])
67 AC_DEFINE(SOLARIS, , [Building on Solaris 2.x])
68 LINKFLAGS="-lkstat -ldevinfo -lsocket -lnsl"
69 ;;
70 freebsd4.*)
71 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
72 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
73 AM_CONDITIONAL(SETGIDBINS, true)
74 LINKFLAGS="-lkvm -ldevstat"
75 ;;
76 freebsd5.*)
77 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
78 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
79 AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
80 LINKFLAGS="-lkvm -ldevstat"
81 ;;
82 netbsdelf*)
83 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
84 AC_DEFINE(NETBSD, , [Building on NetBSD])
85 ;;
86 openbsd*)
87 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
88 AC_DEFINE(OPENBSD, , [Building on OpenBSD])
89 ;;
90 dragonfly*)
91 AC_DEFINE(ALLBSD, , [Building on a BSD-derived system])
92 AC_DEFINE(DFBSD, , [Building on DragonFlyBSD])
93 AM_CONDITIONAL(SETGIDBINS, true)
94 LINKFLAGS="-lkvm -ldevstat"
95 ;;
96 linux-gnu)
97 AC_DEFINE(LINUX, , [Building on GNU/Linux])
98 AM_CONDITIONAL(SETUIDBINS, true)
99 ;;
100 cygwin)
101 AC_DEFINE(CYGWIN, , [Building on Cygwin])
102 ;;
103 *)
104 AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
105 ;;
106 esac
107
108 # User specified curses/ncurses prefix
109 AC_ARG_WITH([curses-prefix],
110 [ --with-curses-prefix=PATH curses (or ncurses) is in PATH],
111 [
112 if test -d "$withval/lib"; then
113 SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
114 fi
115 if test -d "$withval/include"; then
116 SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
117 fi
118 ]
119 )
120
121 # Check if user wants to disable statgrab
122 AM_CONDITIONAL(STATGRAB, true)
123 AC_ARG_ENABLE(statgrab,
124 [ --disable-statgrab disable building of statgrab],
125 [
126 if test "x$enableval" = "xno" ; then
127 AM_CONDITIONAL(STATGRAB, false)
128 fi
129 ]
130 )
131
132 # Check if user wants to disable saidar
133 AM_CONDITIONAL(SAIDAR, true)
134 AC_ARG_ENABLE(saidar,
135 [ --disable-saidar disable building of saidar],
136 [
137 if test "x$enableval" = "xno" ; then
138 AM_CONDITIONAL(SAIDAR, false)
139 fi
140 ],
141 [
142 # saidar needs curses
143 # (if we don't find curses we disable saidar)
144 MP_WITH_CURSES
145 ]
146 )
147
148 # Check if the user would prefer not to build examples
149 AM_CONDITIONAL(EXAMPLES, true)
150 AC_ARG_ENABLE(examples,
151 [ --disable-examples disable building of examples],
152 [
153 if test "x$enableval" = "xno" ; then
154 AM_CONDITIONAL(EXAMPLES, false)
155 fi
156 ]
157 )
158
159 # Check if user wants to install manpages
160 AM_CONDITIONAL(MANPAGES, true)
161 AC_ARG_ENABLE(manpages,
162 [ --disable-manpages disable installation of manpages],
163 [
164 if test "x$enableval" = "xno" ; then
165 AM_CONDITIONAL(MANPAGES, false)
166 fi
167 ]
168 )
169
170 # Check if the user wants to turn off setgid binaries
171 AC_ARG_ENABLE(setgid-binaries,
172 [ --disable-setgid-binaries disable binaries being setgid],
173 [
174 if test "x$enableval" = "xno" ; then
175 AM_CONDITIONAL(SETGIDBINS, false)
176 fi
177 ]
178 )
179
180 # Check if the user wants to turn off setuid binaries
181 AC_ARG_ENABLE(setuid-binaries,
182 [ --disable-setuid-binaries disable binaries being setuid],
183 [
184 if test "x$enableval" = "xno" ; then
185 AM_CONDITIONAL(SETUIDBINS, false)
186 fi
187 ]
188 )
189
190 # The LIBS and CPPFLAGS that saidar needs
191 AC_SUBST(SAIDARLIBS)
192 AC_SUBST(SAIDARCPPFLAGS)
193
194 # The flags needed to link to libstatgrab
195 # (ie. our dependencies)
196 AC_SUBST(LINKFLAGS)
197
198 # And finish by changing these files
199 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])
200
201 AC_OUTPUT