50 |
|
LINKFLAGS="-lkstat" |
51 |
|
;; |
52 |
|
freebsd4.*) |
53 |
< |
AC_DEFINE(FREEBSD, , [Building on FreeBSD 4.x]) |
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 |
|
;; |
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]) |
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 |