1 dnl If not 1, append datestamp to the version number
2 m4_define(empathy_released, 0)
4 m4_define([empathy_major_version], [2])
5 m4_define([empathy_minor_version], [29])
6 m4_define([empathy_micro_version], [4])
7 m4_define([empathy_nano_version], [0])
9 dnl Display the nano_version only if it's not '0'
10 m4_define([empathy_base_version],
11 [empathy_major_version.empathy_minor_version.empathy_micro_version])
12 m4_define([empathy_full_version],
13 [m4_if(empathy_nano_version, 0, [empathy_base_version],
14 [empathy_base_version].[empathy_nano_version])])
16 m4_define(empathy_maybe_datestamp,
17 m4_esyscmd([if test x]empathy_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
19 m4_define(empathy_version, empathy_full_version[]empathy_maybe_datestamp)
22 AC_INIT(Empathy, empathy_version, http://bugzilla.gnome.org/browse.cgi?product=empathy)
27 Copyright (C) 2003-2007 Imendio AB
28 Copyright (C) 2007-2008 Collabora Ltd.
31 # Minimal version required
35 TELEPATHY_GLIB_REQUIRED=0.9.0
36 ENCHANT_REQUIRED=1.2.0
37 ISO_CODES_REQUIRED=0.35
38 LIBNOTIFY_REQUIRED=0.4.4
39 LIBCANBERRA_GTK_REQUIRED=0.4
40 LIBCHAMPLAIN_REQUIRED=0.4
41 LIBCHAMPLAIN_GTK_REQUIRED=0.4
42 CLUTTER_GTK_REQUIRED=0.10
44 WEBKIT_REQUIRED=1.1.15
46 NETWORK_MANAGER_REQUIRED=0.7.0
47 NAUTILUS_SENDTO_REQUIRED=2.28.1
49 # Use --enable-maintainer-mode to disabled deprecated symbols
50 GNOME_MAINTAINER_MODE_DEFINES
52 # Warning if GLib/GDK/GTK headers are included
53 AC_DEFINE(G_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GLib])
54 AC_DEFINE(GDK_PIXBUF_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GDK pixbuf])
55 AC_DEFINE(GTK_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GTK])
57 AC_CONFIG_MACRO_DIR([m4])
58 AC_CONFIG_HEADERS([config.h])
59 AC_CONFIG_SRCDIR([configure.ac])
64 AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability)
72 IT_PROG_INTLTOOL([0.35.0])
73 GNOME_DOC_INIT([0.17.3])
75 AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
76 AC_PATH_PROG(GCONFTOOL, gconftool-2)
78 GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
79 AC_SUBST(GLIB_GENMARSHAL)
81 AC_CHECK_PROGS([XSLTPROC], [xsltproc])
82 if test -z "$XSLTPROC"; then
83 AC_MSG_ERROR([xsltproc (from libxslt) is required])
90 # -----------------------------------------------------------
92 # -----------------------------------------------------------
93 AS_COMPILER_FLAG(-Wall, ERROR_CFLAGS="-Wall", ERROR_CFLAGS="")
94 AS_COMPILER_FLAG(-Werror, werror=yes, werror=no)
97 AC_HELP_STRING([--disable-Werror],[compile without -Werror (normally enabled in development builds)]),
100 AS_COMPILER_FLAG(-Wextra, wextra=yes, wextra=no)
101 AS_COMPILER_FLAG(-Wno-missing-field-initializers,
102 wno_missing_field_initializers=yes,
103 wno_missing_field_initializers=no)
104 AS_COMPILER_FLAG(-Wno-unused-parameter,
105 wno_unused_parameter=yes,
106 wno_unused_parameter=no)
108 ifelse(empathy_released, 1, [],
110 if test x$werror = xyes; then
111 ERROR_CFLAGS="$ERROR_CFLAGS -Werror"
113 if test x$wextra = xyes -a \
114 x$wno_missing_field_initializers = xyes -a \
115 x$wno_unused_parameter = xyes; then
116 ERROR_CFLAGS="$ERROR_CFLAGS -Wextra -Wno-missing-field-initializers -Wno-unused-parameter"
120 AS_COMPILER_FLAG(-Wdeclaration-after-statement, ERROR_CFLAGS="$ERROR_CFLAGS -Wdeclaration-after-statement")
121 AS_COMPILER_FLAG(-Wshadow, ERROR_CFLAGS="$ERROR_CFLAGS -Wshadow")
122 AS_COMPILER_FLAG(-Wmissing-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-prototypes")
123 AS_COMPILER_FLAG(-Wmissing-declarations, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-declarations")
124 # Disabled because some GTK+ headers (like gtkitemfactory.h) are bugged :(
125 #AS_COMPILER_FLAG(-Wstrict-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wstrict-prototypes")
127 AC_SUBST(ERROR_CFLAGS)
129 # -----------------------------------------------------------
130 # Pkg-Config dependency checks
131 # -----------------------------------------------------------
133 PKG_CHECK_MODULES(LIBEMPATHY,
135 glib-2.0 >= $GLIB_REQUIRED
137 gio-2.0 >= $GLIB_REQUIRED
138 gio-unix-2.0 >= $GLIB_REQUIRED
140 telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
146 PKG_CHECK_MODULES(LIBEMPATHYGTK,
148 glib-2.0 >= $GLIB_REQUIRED
150 gio-2.0 >= $GLIB_REQUIRED
151 gconf-2.0 >= $GCONF_REQUIRED
153 gtk+-2.0 >= $GTK_REQUIRED
154 libcanberra-gtk >= $LIBCANBERRA_GTK_REQUIRED
155 telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
158 gstreamer-interfaces-0.10
161 PKG_CHECK_MODULES(EMPATHY,
163 glib-2.0 >= $GLIB_REQUIRED
165 gio-2.0 >= $GLIB_REQUIRED
167 gtk+-2.0 >= $GTK_REQUIRED
170 telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
175 gnome-keyring-1 >= $KEYRING_REQUIRED
178 PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED)
180 # -----------------------------------------------------------
182 # -----------------------------------------------------------
185 AC_HELP_STRING([--disable-debug],[compile without debug code]),
186 enable_debug=$enableval, enable_debug=yes )
188 if test x$enable_debug = xyes; then
189 AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
192 # -----------------------------------------------------------
194 # -----------------------------------------------------------
196 GETTEXT_PACKAGE=empathy
197 AC_SUBST(GETTEXT_PACKAGE)
198 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
202 # -----------------------------------------------------------
203 # Connectivity integration
204 # -----------------------------------------------------------
205 AC_ARG_WITH(connectivity,
206 AS_HELP_STRING([--with-connectivity=@<:@nm/connman/auto/no@:>@],
207 [build with connectivity support]), ,
208 with_connectivity=auto)
210 if test "x$with_connectivity" = "xno"; then
214 elif test "x$with_connectivity" = "xconnman"; then
216 PKG_CHECK_MODULES(CONNMAN,
219 ], have_connman="yes", have_connman="no")
221 if test "x$have_connman" = "xyes"; then
222 AC_DEFINE(HAVE_CONNMAN, 1, [Define if you have connman dependencies])
228 PKG_CHECK_MODULES(NETWORK_MANAGER,
230 libnm_glib >= $NETWORK_MANAGER_REQUIRED
231 ], have_nm="yes", have_nm="no")
233 if test "x$have_nm" = "xyes"; then
234 AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
237 PKG_CHECK_MODULES(NETWORK_MANAGER,
239 libnm-glib >= $NETWORK_MANAGER_REQUIRED
240 ], have_nm="yes", have_nm="no")
242 if test "x$have_nm" = "xyes"; then
243 AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
249 if test "x$with_connectivity" = "xconnman" -a "x$have_connman" != "xyes"; then
250 AC_MSG_ERROR([Couldn't find connman dependencies.])
253 if test "x$with_connectivity" = "xnm" -a "x$have_nm" != "xyes"; then
254 AC_MSG_ERROR([Couldn't find libnm-glib dependencies.])
257 AM_CONDITIONAL(HAVE_NM, test "x$have_nm" = "xyes")
258 AM_CONDITIONAL(HAVE_CONNMAN, test "x$have_connman" = "xyes")
260 # -----------------------------------------------------------
262 # -----------------------------------------------------------
263 AC_ARG_ENABLE(webkit,
264 AS_HELP_STRING([--enable-webkit=@<:@no/yes/auto@:>@],
265 [build with webkit support]), ,
268 if test "x$enable_webkit" != "xno"; then
269 PKG_CHECK_MODULES(WEBKIT,
271 webkit-1.0 >= $WEBKIT_REQUIRED
272 ], have_webkit="yes", have_webkit="no")
274 if test "x$have_webkit" = "xyes"; then
275 AC_DEFINE(HAVE_WEBKIT, 1, [Define if you have libwebkitgtk])
281 if test "x$enable_webkit" = "xyes" -a "x$have_webkit" != "xyes"; then
282 AC_MSG_ERROR([Couldn't find webkit dependencies.])
284 AM_CONDITIONAL(HAVE_WEBKIT, test "x$have_webkit" = "xyes")
286 # -----------------------------------------------------------
287 # spellchecking checks: enchant and iso-codes
288 # -----------------------------------------------------------
290 AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
291 [Enable spell checking]), ,
294 if test "x$enable_spell" != "xno"; then
295 PKG_CHECK_MODULES(ENCHANT,
297 enchant >= $ENCHANT_REQUIRED,
298 iso-codes >= $ISO_CODES_REQUIRED
299 ], have_enchant="yes", have_enchant="no")
301 if test "x$have_enchant" = "xyes"; then
302 AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
303 if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
304 $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
305 AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
306 AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
312 AC_MSG_RESULT([$result])
318 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
319 AC_MSG_ERROR([Couldn't find spell dependencies.])
322 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
324 # -----------------------------------------------------------
325 # Map view checks: libchamplain
326 # -----------------------------------------------------------
328 AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
329 [Enable map view]), ,
332 if test "x$enable_map" != "xno"; then
333 PKG_CHECK_MODULES(LIBCHAMPLAIN,
335 champlain-0.4 >= $LIBCHAMPLAIN_REQUIRED,
336 champlain-gtk-0.4 >= $LIBCHAMPLAIN_GTK_REQUIRED
337 clutter-gtk-0.10 >= $CLUTTER_GTK_REQUIRED
338 ], have_libchamplain="yes", have_libchamplain="no")
340 if test "x$have_libchamplain" = "xyes"; then
341 AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
347 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
348 AC_MSG_ERROR([Couldn't find map view dependencies.])
351 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
353 # -----------------------------------------------------------
354 # location checks: geoclue
355 # -----------------------------------------------------------
356 AC_ARG_ENABLE(location,
357 AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
358 [Enable location awareness]), ,
359 enable_location=auto)
361 if test "x$enable_location" != "xno"; then
362 PKG_CHECK_MODULES(GEOCLUE,
364 geoclue >= $GEOCLUE_REQUIRED
365 ], have_geoclue="yes", have_geoclue="no")
367 if test "x$have_geoclue" = "xyes"; then
368 AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
374 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
375 AC_MSG_ERROR([Couldn't find location dependencies.])
378 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
379 AC_SUBST(GEOCLUE_CFLAGS)
380 AC_SUBST(GEOCLUE_LIBS)
382 # -----------------------------------------------------------
383 # moblin widgets support
384 # -----------------------------------------------------------
385 AC_ARG_ENABLE(moblin,
386 AS_HELP_STRING([--enable-moblin=@<:no/yes@:>@],
387 [Enable moblin widgets]), ,
390 if test "x$enable_moblin" != "xno"; then
391 PKG_CHECK_MODULES(MOBLIN,
394 ], have_moblin="yes", have_moblin="no")
396 if test "x$have_moblin" = "xyes"; then
397 AC_DEFINE(HAVE_MOBLIN, 1, [Define if you have moblin])
403 if test "x$enable_moblin" = "xyes" -a "x$have_moblin" != "xyes"; then
404 AC_MSG_ERROR([Couldn't find moblin dependencies.])
407 AM_CONDITIONAL(HAVE_MOBLIN, test "x$have_moblin" = "xyes")
408 AC_SUBST(MOBLIN_CFLAGS)
409 AC_SUBST(MOBLIN_LIBS)
411 # -----------------------------------------------------------
413 # -----------------------------------------------------------
414 AC_ARG_ENABLE(nautilus-sendto,
415 AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
416 [build nautilus-sendto plugin]), ,
417 enable_nautilus_sendto=auto)
419 if test "x$enable_nautilus_sendto" != "xno"; then
420 PKG_CHECK_MODULES(NST,
422 nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
423 ], have_nst="yes", have_nst="no")
428 if test "x$enable_nautilus_sendto" = "xyes" -a "x$have_nst" != "xyes"; then
429 AC_MSG_ERROR([Couldn't find nautilus-sendto dependencies.])
432 AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
434 # -----------------------------------------------------------
435 # Coding style checks
436 # -----------------------------------------------------------
437 AC_ARG_ENABLE(coding-style-checks,
438 AC_HELP_STRING([--disable-coding-style-checks],
439 [don't check coding style using grep]),
440 [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
442 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
443 # -----------------------------------------------------------
450 data/empathy.desktop.in
455 libempathy-gtk/Makefile
457 nautilus-sendto-plugin/Makefile
460 tests/interactive/Makefile
470 Compiler....................: ${CC}
471 Compiler Flags..............: ${CFLAGS} ${ERROR_CFLAGS}
472 Prefix......................: ${prefix}
473 Shaved build................: ${enable_shave}
474 Coding style checks.........: ${ENABLE_CODING_STYLE_CHECKS}
477 Spell checking (enchant)....: ${have_enchant}
478 Display maps (libchamplain).: ${have_libchamplain}
479 Location awareness (Geoclue): ${have_geoclue}
480 Adium themes (Webkit).......: ${have_webkit}
481 Moblin widgets .............: ${have_moblin}
484 NetworkManager integration..: ${have_nm}
485 ConnMan integration.........: ${have_connman}
488 Nautilus-sendto plugin......: ${have_nst}