]> git.0d.be Git - empathy.git/blob - configure.ac
Remove LIBPANELAPPLET entry from configure.ac
[empathy.git] / configure.ac
1 dnl If not 1, append datestamp to the version number
2 m4_define(empathy_released, 0)
3
4 m4_define([empathy_major_version], [2])
5 m4_define([empathy_minor_version], [29])
6 m4_define([empathy_micro_version], [2])
7 m4_define([empathy_nano_version], [0])
8
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])])
15
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]))
18
19 m4_define(empathy_version, empathy_full_version[]empathy_maybe_datestamp)
20
21
22 AC_INIT(Empathy, empathy_version, http://bugzilla.gnome.org/browse.cgi?product=empathy)
23
24
25 AC_PREREQ(2.59)
26 AC_COPYRIGHT([
27   Copyright (C) 2003-2007 Imendio AB
28   Copyright (C) 2007-2008 Collabora Ltd.
29 ])
30
31 # Minimal version required
32 GLIB_REQUIRED=2.22.0
33 GTK_REQUIRED=2.16.0
34 GCONF_REQUIRED=1.2.0
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
43 GEOCLUE_REQUIRED=0.11
44 WEBKIT_REQUIRED=1.1.15
45 KEYRING_REQUIRED=2.22
46 NETWORK_MANAGER_REQUIRED=0.7.0
47 NAUTILUS_SENDTO_REQUIRED=2.28.0.1
48
49 # Use --enable-maintainer-mode to disabled deprecated symbols
50 GNOME_MAINTAINER_MODE_DEFINES
51
52 # Uncomment that to build with single include disabled
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])
56
57 AC_CONFIG_MACRO_DIR([m4])
58 AC_CONFIG_HEADERS([config.h])
59 AC_CONFIG_SRCDIR([configure.ac])
60 AC_CONFIG_AUX_DIR(.)
61
62 GNOME_COMMON_INIT
63
64 AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability)
65 AC_ISC_POSIX
66 AC_PROG_CC
67 AC_HEADER_STDC
68 AM_PROG_LIBTOOL
69 AM_PROG_MKDIR_P
70 AM_PATH_GLIB_2_0
71 AC_PATH_XTRA
72 IT_PROG_INTLTOOL([0.35.0])
73 GNOME_DOC_INIT([0.17.3])
74 IDT_COMPILE_WARNINGS
75 AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
76 AC_PATH_PROG(GCONFTOOL, gconftool-2)
77 AM_GCONF_SOURCE_2
78 GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
79 AC_SUBST(GLIB_GENMARSHAL)
80
81 AC_CHECK_PROGS([XSLTPROC], [xsltproc])
82 if test -z "$XSLTPROC"; then
83   AC_MSG_ERROR([xsltproc (from libxslt) is required])
84 fi
85 AM_PATH_PYTHON([2.3])
86
87 EMPATHY_ARG_VALGRIND
88
89
90 # -----------------------------------------------------------
91 # Error flags
92 # -----------------------------------------------------------
93 AS_COMPILER_FLAG(-Wall, ERROR_CFLAGS="-Wall", ERROR_CFLAGS="")
94 AS_COMPILER_FLAG(-Werror, werror=yes, werror=no)
95
96 AC_ARG_ENABLE(Werror,
97   AC_HELP_STRING([--disable-Werror],[compile without -Werror (normally enabled in development builds)]),
98     werror=$enableval, :)
99
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)
107
108 ifelse(empathy_released, 1, [],
109     [
110         if test x$werror = xyes; then
111             ERROR_CFLAGS="$ERROR_CFLAGS -Werror"
112         fi
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"
117         fi
118     ])
119
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")
126
127 AC_SUBST(ERROR_CFLAGS)
128
129 # -----------------------------------------------------------
130 # Pkg-Config dependency checks
131 # -----------------------------------------------------------
132
133 PKG_CHECK_MODULES(LIBEMPATHY,
134 [
135    glib-2.0 >= $GLIB_REQUIRED
136    gobject-2.0
137    gio-2.0 >= $GLIB_REQUIRED
138    gio-unix-2.0 >= $GLIB_REQUIRED
139    libxml-2.0
140    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
141    telepathy-farsight
142    farsight2-0.10
143    gstreamer-0.10
144 ])
145
146 PKG_CHECK_MODULES(LIBEMPATHYGTK,
147 [
148    glib-2.0 >= $GLIB_REQUIRED
149    gobject-2.0
150    gio-2.0 >= $GLIB_REQUIRED
151    gconf-2.0 >= $GCONF_REQUIRED
152    x11
153    gtk+-2.0 >= $GTK_REQUIRED
154    libcanberra-gtk >= $LIBCANBERRA_GTK_REQUIRED
155    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
156    farsight2-0.10
157    gstreamer-0.10
158    gstreamer-interfaces-0.10
159 ])
160
161 PKG_CHECK_MODULES(EMPATHY,
162 [
163    glib-2.0 >= $GLIB_REQUIRED
164    gobject-2.0
165    gio-2.0 >= $GLIB_REQUIRED
166    gdk-x11-2.0
167    gtk+-2.0 >= $GTK_REQUIRED
168    libebook-1.2
169    dbus-glib-1
170    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
171    telepathy-farsight
172    gstreamer-0.10
173    unique-1.0
174    gnome-keyring-1 >= $KEYRING_REQUIRED
175 ])
176
177 PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED)
178
179 # -----------------------------------------------------------
180 # Enable debug
181 # -----------------------------------------------------------
182
183 AC_ARG_ENABLE(debug,
184   AC_HELP_STRING([--disable-debug],[compile without debug code]),
185     enable_debug=$enableval, enable_debug=yes )
186
187 if test x$enable_debug = xyes; then
188   AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
189 fi
190
191 # -----------------------------------------------------------
192 # Language Support
193 # -----------------------------------------------------------
194
195 GETTEXT_PACKAGE=empathy
196 AC_SUBST(GETTEXT_PACKAGE)
197 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
198
199 AM_GLIB_GNU_GETTEXT
200
201 # -----------------------------------------------------------
202 # Connectivity integration
203 # -----------------------------------------------------------
204 AC_ARG_WITH(connectivity,
205               AS_HELP_STRING([--with-connectivity=@<:@nm/connman/auto/no@:>@],
206                              [build with connectivity support]), ,
207                              with_connectivity=auto)
208
209 if test "x$with_connectivity" = "xno"; then
210    have_nm=no
211    have_connman=no
212
213 elif test "x$with_connectivity" = "xconnman"; then
214
215    PKG_CHECK_MODULES(CONNMAN,
216    [
217       dbus-glib-1
218    ], have_connman="yes", have_connman="no")
219
220    if test "x$have_connman" = "xyes"; then
221       AC_DEFINE(HAVE_CONNMAN, 1, [Define if you have connman dependencies])
222       have_nm=no
223    fi
224
225 else
226
227    PKG_CHECK_MODULES(NETWORK_MANAGER,
228    [
229       libnm_glib >= $NETWORK_MANAGER_REQUIRED
230    ], have_nm="yes", have_nm="no")
231
232    if test "x$have_nm" = "xyes"; then
233       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
234       have_connman=no
235    fi
236 fi
237
238 if test "x$with_connectivity" = "xconnman" -a "x$have_connman" != "xyes"; then
239    AC_MSG_ERROR([Couldn't find connman dependencies.])
240 fi
241
242 if test "x$with_connectivity" = "xnm" -a "x$have_nm" != "xyes"; then
243    AC_MSG_ERROR([Couldn't find libnm-glib dependencies.])
244 fi
245
246 AM_CONDITIONAL(HAVE_NM, test "x$have_nm" = "xyes")
247 AM_CONDITIONAL(HAVE_CONNMAN, test "x$have_connman" = "xyes")
248
249 # -----------------------------------------------------------
250 # Webkit
251 # -----------------------------------------------------------
252 AC_ARG_ENABLE(webkit,
253               AS_HELP_STRING([--enable-webkit=@<:@no/yes/auto@:>@],
254                              [build with webkit support]), ,
255                              enable_webkit=auto)
256
257 if test "x$enable_webkit" != "xno"; then
258    PKG_CHECK_MODULES(WEBKIT,
259    [
260       webkit-1.0 >= $WEBKIT_REQUIRED
261    ], have_webkit="yes", have_webkit="no")
262
263    if test "x$have_webkit" = "xyes"; then
264       AC_DEFINE(HAVE_WEBKIT, 1, [Define if you have libwebkitgtk])
265    fi
266 else
267    have_webkit=no
268 fi
269
270 if test "x$enable_webkit" = "xyes" -a "x$have_webkit" != "xyes"; then
271    AC_MSG_ERROR([Couldn't find webkit dependencies.])
272 fi
273 AM_CONDITIONAL(HAVE_WEBKIT, test "x$have_webkit" = "xyes")
274
275 # -----------------------------------------------------------
276 # spellchecking checks: enchant and iso-codes
277 # -----------------------------------------------------------
278 AC_ARG_ENABLE(spell,
279               AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
280                              [Enable spell checking]), ,
281                              enable_spell=auto)
282
283 if test "x$enable_spell" != "xno"; then
284    PKG_CHECK_MODULES(ENCHANT,
285    [
286       enchant >= $ENCHANT_REQUIRED,
287       iso-codes >= $ISO_CODES_REQUIRED
288    ], have_enchant="yes", have_enchant="no")
289
290    if test "x$have_enchant" = "xyes"; then
291       AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
292       if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
293          $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
294             AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
295             AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
296             result=yes
297       else
298             result=no
299             have_enchant="no"
300       fi
301       AC_MSG_RESULT([$result])
302    fi
303 else
304    have_enchant=no
305 fi
306
307 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
308    AC_MSG_ERROR([Couldn't find spell dependencies.])
309 fi
310
311 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
312
313 # -----------------------------------------------------------
314 # Map view checks: libchamplain
315 # -----------------------------------------------------------
316 AC_ARG_ENABLE(map,
317               AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
318                              [Enable map view]), ,
319                              enable_map=auto)
320
321 if test "x$enable_map" != "xno"; then
322    PKG_CHECK_MODULES(LIBCHAMPLAIN,
323    [
324       champlain-0.4 >= $LIBCHAMPLAIN_REQUIRED,
325       champlain-gtk-0.4 >= $LIBCHAMPLAIN_GTK_REQUIRED
326       clutter-gtk-0.10 >= $CLUTTER_GTK_REQUIRED
327    ], have_libchamplain="yes", have_libchamplain="no")
328
329    if test "x$have_libchamplain" = "xyes"; then
330       AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
331    fi
332 else
333    have_libchamplain=no
334 fi
335
336 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
337    AC_MSG_ERROR([Couldn't find map view dependencies.])
338 fi
339
340 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
341
342 # -----------------------------------------------------------
343 # location checks: geoclue
344 # -----------------------------------------------------------
345 AC_ARG_ENABLE(location,
346               AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
347                              [Enable location awareness]), ,
348                              enable_location=auto)
349
350 if test "x$enable_location" != "xno"; then
351    PKG_CHECK_MODULES(GEOCLUE,
352    [
353       geoclue >= $GEOCLUE_REQUIRED
354    ], have_geoclue="yes", have_geoclue="no")
355
356    if test "x$have_geoclue" = "xyes"; then
357       AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
358    fi
359 else
360    have_geoclue="no"
361 fi
362
363 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
364    AC_MSG_ERROR([Couldn't find location dependencies.])
365 fi
366
367 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
368 AC_SUBST(GEOCLUE_CFLAGS)
369 AC_SUBST(GEOCLUE_LIBS)
370
371 # -----------------------------------------------------------
372 # moblin widgets support
373 # -----------------------------------------------------------
374 AC_ARG_ENABLE(moblin,
375               AS_HELP_STRING([--enable-moblin=@<:no/yes@:>@],
376                              [Enable moblin widgets]), ,
377                              enable_moblin=no)
378
379 if test "x$enable_moblin" != "xno"; then
380     PKG_CHECK_MODULES(MOBLIN,
381     [
382        nbtk-gtk-1.2
383     ], have_moblin="yes", have_moblin="no")
384
385     if test "x$have_moblin" = "xyes"; then
386        AC_DEFINE(HAVE_MOBLIN, 1, [Define if you have moblin])
387     fi
388 else
389    have_moblin="no"
390 fi
391
392 if test "x$enable_moblin" = "xyes" -a "x$have_moblin" != "xyes"; then
393    AC_MSG_ERROR([Couldn't find moblin dependencies.])
394 fi
395
396 AM_CONDITIONAL(HAVE_MOBLIN, test "x$have_moblin" = "xyes")
397 AC_SUBST(MOBLIN_CFLAGS)
398 AC_SUBST(MOBLIN_LIBS)
399
400 # -----------------------------------------------------------
401 # nautilus-sendto
402 # -----------------------------------------------------------
403 AC_ARG_ENABLE(nautilus-sendto,
404               AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
405                              [build nautilus-sendto plugin]), ,
406                              enable_nst=auto)
407
408 if test "x$enable_nst" != "xno"; then
409    PKG_CHECK_MODULES(NST,
410    [
411       nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
412    ], have_nst="yes", have_nst="no")
413 else
414    have_nst=no
415 fi
416
417 if test "x$enable_nst" = "xyes" -a "x$have_nst" != "xyes"; then
418    AC_MSG_ERROR([Couldn't find nautilus-sendto dependencies.])
419 fi
420
421 AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
422
423 # -----------------------------------------------------------
424 # Tests
425 # -----------------------------------------------------------
426 AC_ARG_ENABLE(tests,
427               AS_HELP_STRING([--enable-tests=@<:@no/yes/auto@:>@],
428                              [build tests]), ,
429                              enable_tests=auto)
430
431 if test "x$enable_tests" != "xno"; then
432    PKG_CHECK_MODULES(CHECK,
433    [
434       check >= 0.9.4
435    ], have_check="yes", have_check="no")
436 else
437    have_check=no
438 fi
439
440 if test "x$enable_tests" = "xyes" -a "x$have_check" != "xyes"; then
441    AC_MSG_ERROR([Couldn't find check dependencies.])
442 fi
443
444 AM_CONDITIONAL(HAVE_TESTS, test "x$have_check" = "xyes")
445
446 # -----------------------------------------------------------
447 # Coding style checks
448 # -----------------------------------------------------------
449 AC_ARG_ENABLE(coding-style-checks,
450   AC_HELP_STRING([--disable-coding-style-checks],
451                  [don't check coding style using grep]),
452     [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
453
454 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
455 # -----------------------------------------------------------
456
457 SHAVE_INIT(.)
458
459 AC_OUTPUT([
460    Makefile
461    data/Makefile
462    data/empathy.desktop.in
463    data/icons/Makefile
464    extensions/Makefile
465    po/Makefile.in
466    libempathy/Makefile
467    libempathy-gtk/Makefile
468    src/Makefile
469    nautilus-sendto-plugin/Makefile
470    help/Makefile
471    tests/Makefile
472    tests/interactive/Makefile
473    tests/xml/Makefile
474    tools/Makefile
475    shave
476    shave-libtool
477 ])
478
479 echo "
480 Configure summary:
481
482         Compiler....................:  ${CC}
483         Compiler Flags..............:  ${CFLAGS} ${ERROR_CFLAGS}
484         Prefix......................:  ${prefix}
485         Shaved build................:  ${enable_shave}
486         Tests.......................:  ${have_check}
487         Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
488
489     Features:
490         Spell checking (enchant)....:  ${have_enchant}
491         Display maps (libchamplain).:  ${have_libchamplain}
492         Location awareness (Geoclue):  ${have_geoclue}
493         Adium themes (Webkit).......:  ${have_webkit}
494         Moblin widgets .............:  ${have_moblin}
495
496     Connectivity:
497         NetworkManager integration..:  ${have_nm}
498         ConnMan integration.........:  ${have_connman}
499
500     Extras:
501         Nautilus-sendto plugin......:  ${have_nst}
502 "