ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
Revision: 1.34
Committed: Wed Oct 8 17:49:21 2003 UTC (20 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.33: +8 -3 lines
Log Message:
Add a define for FreeBSD 5.x.

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.33 2003/10/07 22:07:37 tdb Exp $
6 #
7
8 # Change these to change the package name and version
9 AC_INIT(libstatgrab, 0.6, bugs@i-scream.org)
10 AM_INIT_AUTOMAKE(libstatgrab, 0.6)
11
12 # Revision number (automatically updated)
13 AC_REVISION($Revision: 1.33 $)
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 LINKFLAGS="-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 LINKFLAGS="-lkstat"
51 ;;
52 freebsd4.*)
53 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
54 LINKFLAGS="-lkvm -ldevstat"
55 ;;
56 freebsd5.*)
57 AC_DEFINE(FREEBSD, , [Building on FreeBSD])
58 AC_DEFINE(FREEBSD5, , [Building on FreeBSD 5.x])
59 LINKFLAGS="-lkvm -ldevstat"
60 ;;
61 linux-gnu)
62 AC_DEFINE(LINUX, , [Building on GNU/Linux])
63 ;;
64 *)
65 AC_MSG_ERROR([Cannot build on unknown OS: $host_os])
66 ;;
67 esac
68
69 # User specified curses/ncurses prefix
70 AC_ARG_WITH([curses-prefix],
71 [ --with-curses-prefix=PATH curses (or ncurses) is in PATH],
72 [
73 if test -d "$withval/lib"; then
74 SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
75 fi
76 if test -d "$withval/include"; then
77 SAIDARCPPFLAGS="-I${withval}/include -I${withval}/include/ncurses ${SAIRDARCPPFLAGS}"
78 fi
79 ]
80 )
81
82 # Check if user wants to disable statgrab
83 AM_CONDITIONAL(STATGRAB, true)
84 AC_ARG_ENABLE(statgrab,
85 [ --disable-statgrab disable building of statgrab],
86 [
87 if test "x$enableval" = "xno" ; then
88 AM_CONDITIONAL(STATGRAB, false)
89 fi
90 ]
91 )
92
93 # Check if user wants to disable saidar
94 AM_CONDITIONAL(SAIDAR, true)
95 AC_ARG_ENABLE(saidar,
96 [ --disable-saidar disable building of saidar],
97 [
98 if test "x$enableval" = "xno" ; then
99 AM_CONDITIONAL(SAIDAR, false)
100 fi
101 ],
102 [
103 # saidar needs curses
104 # (if we don't find curses we disable saidar)
105 MP_WITH_CURSES
106 ]
107 )
108
109 # Check if the user would prefer not to build examples
110 AM_CONDITIONAL(EXAMPLES, true)
111 AC_ARG_ENABLE(examples,
112 [ --disable-examples disable building of examples],
113 [
114 if test "x$enableval" = "xno" ; then
115 AM_CONDITIONAL(EXAMPLES, false)
116 fi
117 ]
118 )
119
120 # Check if user wants to install manpages
121 AM_CONDITIONAL(MANPAGES, true)
122 AC_ARG_ENABLE(manpages,
123 [ --disable-manpages disable installation of manpages],
124 [
125 if test "x$enableval" = "xno" ; then
126 AM_CONDITIONAL(MANPAGES, false)
127 fi
128 ]
129 )
130
131 # User specified pkgconfig dir
132 AC_ARG_WITH([pkgconfig-dir],
133 [ --with-pkgconfig-dir=PATH pkgconfig lib directory (PREFIX/lib/pkgconfig)],
134 [ PKGCONFIG_DIR=$withval ],
135 [ PKGCONFIG_DIR="\$(libdir)/pkgconfig" ]
136 )
137 AC_SUBST(PKGCONFIG_DIR)
138
139 # The LIBS and CPPFLAGS that saidar needs
140 AC_SUBST(SAIDARLIBS)
141 AC_SUBST(SAIDARCPPFLAGS)
142
143 # The flags needed to link to libstatgrab
144 # (ie. our dependencies)
145 AC_SUBST(LINKFLAGS)
146
147 # And finish by changing these files
148 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])
149
150 AC_OUTPUT