1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
# ================= initialization =================== #
AC_INIT([MATE Sensors Applet], [1.4.0], [http://www.mate-desktop.org],
[mate-sensors-applet])
AC_CONFIG_SRCDIR([sensors-applet/main.c])
AM_CONFIG_HEADER([sensors-applet/config.h])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
# ============== basic compiler settings ============= #
AC_PROG_CC
AC_HEADER_STDC
# =================== for plugins ==================== #
AC_PROG_LIBTOOL
# =========== take care of some localization ========= #
AH_TEMPLATE([GETTEXT_PACKAGE], [Package name for gettext])
GETTEXT_PACKAGE=mate-sensors-applet
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE")
AC_SUBST(GETTEXT_PACKAGE)
ALL_LINGUAS="cs de es fi fr hu it pl pt_BR ro ru sv zh_CN"
AM_GLIB_GNU_GETTEXT
AC_PROG_INTLTOOL
# ========== export compiler / linker options ======== #
AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(LIBS)
# ============== look for dependencies =============== #
# check for headers needed for standard interfaces
AC_CHECK_HEADERS(
stdlib.h \
string.h \
stdio.h \
sys/types.h \
sys/socket.h \
netinet/in.h \
arpa/inet.h \
fcntl.h \
sys/ioctl.h \
unistd.h \
dlfcn.h
)
GLIB_REQUIRED=2.26.0
GTK_REQUIRED=2.14.0
LIBPANEL_REQUIRED=1.1.0
LIBMATENOTIFY_REQUIRED=1.1.0
LIBCAIRO_REQUIRED=1.0.4
LIBDBUSGLIB_REQUIRED=0.80
LIBATASMART_REQUIRED=0.16
PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED gio-2.0)
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRED)
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
PKG_CHECK_MODULES(MATE, libmatepanelapplet-4.0 >= $LIBPANEL_REQUIRED)
AC_SUBST(MATE_CFLAGS)
AC_SUBST(MATE_LIBS)
PKG_CHECK_MODULES(CAIRO, cairo >= $LIBCAIRO_REQUIRED)
AC_SUBST(CAIRO_CFLAGS)
AC_SUBST(CAIRO_LIBS)
# enable support for udisks (via dbus) by default if its available
AC_ARG_ENABLE(udisks,
AS_HELP_STRING([--disable-udisks],
[Disable support for udisks sensor readings via DBUS.]),
enable_udisks=$enableval, enable_udisks="yes")
if test "x$enable_udisks" = "xno" ; then
echo "Disabling udisks support"
else
PKG_CHECK_MODULES(DBUSGLIB, dbus-glib-1 >= $LIBDBUSGLIB_REQUIRED,
HAVE_DBUSGLIB="yes", HAVE_DBUSGLIB="no")
AC_SUBST(DBUSGLIB_CFLAGS)
AC_SUBST(DBUSGLIB_LIBS)
PKG_CHECK_MODULES(LIBATASMART, libatasmart >= $LIBATASMART_REQUIRED,
HAVE_LIBATASMART="yes", HAVE_LIBATASMART="no")
AC_SUBST(LIBATASMART_CFLAGS)
AC_SUBST(LIBATASMART_LIBS)
fi
AM_CONDITIONAL(UDISKS, test -n "$DBUSGLIB_CFLAGS" -a -n "$LIBATASMART_CFLAGS")
# support for libmatenotify
LIBMATENOTIFY_CFLAGS=
LIBMATENOTIFY_LIBS=
# enable support even if not specifically asked for
AC_ARG_ENABLE(libmatenotify,
[ --enable-libmatenotify Enable libmatenotify support], [
enable_libmatenotify=$enableval], [
enable_libmatenotify="yes"
])
if test "x$enable_libmatenotify" = "xno"
then
echo "Disabling libmatenotify support"
else
PKG_CHECK_MODULES(LIBMATENOTIFY, libmatenotify >= $LIBMATENOTIFY_REQUIRED,
HAVE_LIBMATENOTIFY="yes", HAVE_LIBMATENOTIFY="no")
if test "x$HAVE_LIBMATENOTIFY" = "xyes"
then
AC_DEFINE(HAVE_LIBMATENOTIFY, 1, [libmatenotify available])
fi
fi
AM_CONDITIONAL(LIBMATENOTIFY, test -n "$LIBMATENOTIFY_LIBS")
AC_SUBST(LIBMATENOTIFY_CFLAGS)
AC_SUBST(LIBMATENOTIFY_LIBS)
# allow user to specify libsensors support, but support it anyway if possible
AC_ARG_WITH(libsensors,
[ --with-libsensors[=DIR] use libsensors in DIR],[
if test "$withval" != "no" -a "$withval" != "yes"; then
SENSORS_DIR=$withval
CPPFLAGS="${CPPFLAGS} -I${SENSORS_DIR}/include/sensors"
LIBS="${LIBS} -L${SENSORS_DIR}/lib"
fi
with_libsensors=$withval],[
with_libsensors="yes"
])
if test "$with_libsensors" = "no"; then
echo "Disabling lmsensors support"
else
# check for specfic headers needed for libsensors-sensors-interface
AC_CHECK_HEADERS(regex.h)
AC_CHECK_HEADERS(sensors/sensors.h,
AC_CHECK_LIB(sensors, sensors_init,[
AC_DEFINE(HAVE_LIBSENSORS,1,[libsensors is available])
if test "x${SENSORS_DIR}" != "x"; then
LIBSENSORS_CFLAGS="-I${SENSORS_DIR}/include"
LIBSENSORS_LIBS="-L${SENSORS_DIR}/lib -lsensors"
[case ${host} in
*-*-solaris*)
SENSORS_LIBS="-L${SENSORS_DIR}/lib -R${SENSORS_DIR}/lib -lsensors"
;;
esac]
else
LIBSENSORS_LIBS="-lsensors"
fi]))
fi
AM_CONDITIONAL(LIBSENSORS, test -n "$LIBSENSORS_LIBS")
AC_SUBST(LIBSENSORS_CFLAGS)
AC_SUBST(LIBSENSORS_LIBS)
# do nvidia by default if available
AC_ARG_WITH(nvidia,
[ --with-nvidia[=DIR] use nvidia in DIR],[
if test "$withval" != "no" -a "$withval" != "yes"; then
NVIDIA_DIR=$withval
CFLAGS="${CFLAGS} -I${NVIDIA_DIR}/include"
LIBS="${LIBS} -L${NVIDIA_DIR}/lib"
fi
with_nvidia=$withval],[
with_nvidia="yes"
])
if test "$with_nvidia" = "no"; then
echo "Disabling nvidia support"
else
AC_ARG_WITH(x11,
[ --with-x11[=DIR] use x11 in DIR],[
if test "$withval" != "no" -a "$withval" != "yes"; then
X11_DIR=$withval
CFLAGS="${CFLAGS} -I${X11_DIR}/include"
LIBS="${LIBS} -L${X11_DIR}/lib"
fi
with_x11=$withval],[
with_x11="yes"
])
AC_CHECK_HEADERS(X11/Xlib.h,
AC_CHECK_LIB(X11, XOpenDisplay, [ HAVE_X11=true ]))
# can't embed next AC_CHECK_HEADERS in true case of AC_CHECK_LIB
if test "${HAVE_X11}" = "true"; then
LIBS="${LIBS} -lX11 -lXext"
# need to specifically include X11/Xlib header when
# doing checks for NVCtrl headers
AC_CHECK_HEADERS(NVCtrl/NVCtrl.h NVCtrl/NVCtrlLib.h, [ HAVE_NVIDIA=true ], [],
[
#include <X11/Xlib.h>
])
if test "${HAVE_NVIDIA}" = "true"; then
AC_CHECK_LIB(XNVCtrl, XNVCTRLQueryExtension, [
NVIDIA_LIBS="-lXNVCtrl"
AC_DEFINE(HAVE_NVIDIA,1,[nvidia sensors available])
])
fi
fi
fi
AM_CONDITIONAL(NVIDIA, test -n "$NVIDIA_LIBS")
AC_SUBST(NVIDIA_CFLAGS)
AC_SUBST(NVIDIA_LIBS)
AC_ARG_WITH(aticonfig,
[ --with-aticonfig[=PATH] use aticonfig plugin with optional binary provided
by PATH], [
if test "$withval" != "no" -a "$withval" != "yes"; then
aticonfig_exe=$withval
else
aticonfig_exe=aticonfig
fi
with_aticonfig=$withval ], [
aticonfig_exe=aticonfig
with_aticonfig="check"
])
if test "x$with_aticonfig" == "xcheck"; then
AC_CHECK_PROG(ATICONFIG_EXE, ["$aticonfig_exe"], yes, no)
if test "x$ATICONFIG_EXE" = "xno"; then
with_aticonfig="no"
fi
fi
AM_CONDITIONAL(ATICONFIG, test "$with_aticonfig" != "no")
if test "$with_aticonfig" = "no"; then
echo "Disabling aticonfig support"
else
AC_DEFINE(HAVE_ATICONFIG,1,[using aticonfig])
AC_DEFINE_UNQUOTED(ATICONFIG_EXE, ["$aticonfig_exe"], [aticonfig executable])
fi
AC_SUBST(CFLAGS)
# for help docs stuff
AC_PATH_PROG(XSLTPROC, xsltproc, no)
if test x"$XSLTPROC" = xno; then
AC_MSG_ERROR([xsltproc executable not found in your path - should be installed with libxslt])
fi
MATE_COMPILE_WARNINGS(maximum)
# ================ mate-doc-utils stuff ============= #
MATE_DOC_INIT
# ================ GSettings stuff ============= #
GLIB_GSETTINGS
# ==================== plugin stuff ================== #
PLUGIN_LIBTOOL_FLAGS="-module -avoid-version"
AC_SUBST(PLUGIN_LIBTOOL_FLAGS)
# ================= generate files =================== #
AC_CONFIG_FILES([
Makefile
sensors-applet/Makefile
lib/Makefile
plugins/Makefile
plugins/acpi/Makefile
plugins/udisks/Makefile
plugins/eee/Makefile
plugins/hddtemp/Makefile
plugins/i2c-proc/Makefile
plugins/i2c-sys/Makefile
plugins/i8k/Makefile
plugins/ibm-acpi/Makefile
plugins/libsensors/Makefile
plugins/nvidia/Makefile
plugins/aticonfig/Makefile
plugins/omnibook/Makefile
plugins/pmu-sys/Makefile
plugins/smu-sys/Makefile
plugins/sonypi/Makefile
pixmaps/Makefile
po/Makefile.in
help/Makefile
])
AC_OUTPUT
|