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.5 by tdb, Mon Mar 3 12:33:06 2003 UTC vs.
Revision 1.34 by tdb, Wed Oct 8 17:49:21 2003 UTC

# Line 6 | Line 6
6   #
7  
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)
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$)
# Line 32 | Line 32 | AC_C_CONST
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"
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          ;;
# Line 54 | Line 66 | linux-gnu)
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])
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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines