ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
(Generate patch)

Comparing projects/libstatgrab/configure.in (file contents):
Revision 1.3 by tdb, Wed Feb 19 23:09:48 2003 UTC vs.
Revision 1.33 by tdb, Tue Oct 7 22:07:37 2003 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines