]> git.0d.be Git - empathy.git/blob - configure.ac
move GTK+ check to its own PKG_CHECK_MODULES
[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], [31])
6 m4_define([empathy_micro_version], [4])
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
33 # Hardp deps
34 GCONF_REQUIRED=1.2.0
35 GLIB_REQUIRED=2.25.9
36 GTK_REQUIRED=2.21.2
37 KEYRING_REQUIRED=2.22
38 LIBCANBERRA_GTK_REQUIRED=0.4
39 LIBNOTIFY_REQUIRED=0.4.4
40 TELEPATHY_GLIB_REQUIRED=0.11.7
41 TELEPATHY_LOGGER=0.1.2
42 UNIQUE_REQUIRED=1.1.2
43
44 # Optionnal deps
45 CLUTTER_GTK_REQUIRED=0.10
46 ENCHANT_REQUIRED=1.2.0
47 GEOCLUE_REQUIRED=0.11
48 ISO_CODES_REQUIRED=0.35
49 LIBCHAMPLAIN_GTK_REQUIRED=0.4
50 LIBCHAMPLAIN_REQUIRED=0.4
51 NAUTILUS_SENDTO_REQUIRED=2.28.1
52 NETWORK_MANAGER_REQUIRED=0.7.0
53 WEBKIT_REQUIRED=1.1.15
54
55 # Use --enable-maintainer-mode to disable deprecated symbols,
56 # disable single include and enable GSEAL. If this is not a released empathy,
57 # maintainer mode is forced
58 ifelse(empathy_released, 1, [], [enable_maintainer_mode="yes"])
59 GNOME_MAINTAINER_MODE_DEFINES
60 if test $USE_MAINTAINER_MODE = yes; then
61   AC_DEFINE(GSEAL_ENABLE, [], [Seal public structs to force usage of accessors])
62 fi
63
64 AC_CONFIG_MACRO_DIR([m4])
65 AC_CONFIG_HEADERS([config.h])
66 AC_CONFIG_SRCDIR([configure.ac])
67 AC_CONFIG_AUX_DIR(.)
68
69 GNOME_COMMON_INIT
70
71 AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability)
72
73 # Support silent build rules, requires at least automake-1.11. Disable
74 # by either passing --disable-silent-rules to configure or passing V=1
75 # to make
76 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
77
78 AC_ISC_POSIX
79 AC_PROG_CC
80 AC_HEADER_STDC
81 AM_PROG_LIBTOOL
82 AM_PROG_MKDIR_P
83 AM_PATH_GLIB_2_0
84 AC_PATH_XTRA
85 IT_PROG_INTLTOOL([0.35.0])
86 GNOME_DOC_INIT([0.17.3])
87 AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
88 GLIB_GSETTINGS
89 GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
90 AC_SUBST(GLIB_GENMARSHAL)
91 CONTROL_CENTER_EXTENSIONDIR=`$PKG_CONFIG --variable=extensiondir libgnome-control-center-extension`
92 AC_SUBST(CONTROL_CENTER_EXTENSIONDIR)
93
94 AC_CHECK_PROGS([XSLTPROC], [xsltproc])
95 if test -z "$XSLTPROC"; then
96   AC_MSG_ERROR([xsltproc (from libxslt) is required])
97 fi
98 AM_PATH_PYTHON([2.3])
99
100 EMPATHY_ARG_VALGRIND
101
102
103 # -----------------------------------------------------------
104 # Error flags
105 # -----------------------------------------------------------
106 AS_COMPILER_FLAG(-Wall, ERROR_CFLAGS="-Wall", ERROR_CFLAGS="")
107 AS_COMPILER_FLAG(-Werror, werror=yes, werror=no)
108
109 AC_ARG_ENABLE(Werror,
110   AC_HELP_STRING([--disable-Werror],[compile without -Werror (normally enabled in development builds)]),
111     werror=$enableval, :)
112
113 AS_COMPILER_FLAG(-Wextra, wextra=yes, wextra=no)
114 AS_COMPILER_FLAG(-Wno-missing-field-initializers,
115         wno_missing_field_initializers=yes,
116         wno_missing_field_initializers=no)
117 AS_COMPILER_FLAG(-Wno-unused-parameter,
118         wno_unused_parameter=yes,
119         wno_unused_parameter=no)
120
121 ifelse(empathy_released, 1, [],
122     [
123         if test x$werror = xyes; then
124             ERROR_CFLAGS="$ERROR_CFLAGS -Werror"
125         fi
126         if test x$wextra = xyes -a \
127             x$wno_missing_field_initializers = xyes -a \
128             x$wno_unused_parameter = xyes; then
129             ERROR_CFLAGS="$ERROR_CFLAGS -Wextra -Wno-missing-field-initializers -Wno-unused-parameter"
130         fi
131     ])
132
133 AS_COMPILER_FLAG(-Wdeclaration-after-statement, ERROR_CFLAGS="$ERROR_CFLAGS -Wdeclaration-after-statement")
134 AS_COMPILER_FLAG(-Wshadow, ERROR_CFLAGS="$ERROR_CFLAGS -Wshadow")
135 AS_COMPILER_FLAG(-Wmissing-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-prototypes")
136 AS_COMPILER_FLAG(-Wmissing-declarations, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-declarations")
137 # Disabled because some GTK+ headers (like gtkitemfactory.h) are bugged :(
138 #AS_COMPILER_FLAG(-Wstrict-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wstrict-prototypes")
139
140 AC_SUBST(ERROR_CFLAGS)
141
142 # -----------------------------------------------------------
143 # Pkg-Config dependency checks
144 # -----------------------------------------------------------
145
146 PKG_CHECK_MODULES(EMPATHY,
147 [
148    dbus-glib-1
149    farsight2-0.10
150    gconf-2.0 >= $GCONF_REQUIRED
151    gdk-x11-2.0
152    gio-2.0 >= $GLIB_REQUIRED
153    gio-unix-2.0 >= $GLIB_REQUIRED
154    gnome-keyring-1 >= $KEYRING_REQUIRED
155    gobject-2.0
156    gstreamer-0.10
157    gstreamer-interfaces-0.10
158    libcanberra-gtk >= $LIBCANBERRA_GTK_REQUIRED
159    libebook-1.2
160    libxml-2.0
161    telepathy-farsight
162    telepathy-glib >= $TELEPATHY_GLIB_REQUIRED
163    telepathy-logger-0.1 >= $TELEPATHY_LOGGER
164    unique-1.0 >= $UNIQUE_REQUIRED
165    x11
166 ])
167
168 PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRED)
169
170 PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED)
171
172 # -----------------------------------------------------------
173 # Enable debug
174 # -----------------------------------------------------------
175
176 AC_ARG_ENABLE(debug,
177   AC_HELP_STRING([--disable-debug],[compile without debug code]),
178     enable_debug=$enableval, enable_debug=yes )
179
180 if test x$enable_debug = xyes; then
181   AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
182 fi
183
184 # -----------------------------------------------------------
185 # Language Support
186 # -----------------------------------------------------------
187
188 GETTEXT_PACKAGE=empathy
189 AC_SUBST(GETTEXT_PACKAGE)
190 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
191
192 AM_GLIB_GNU_GETTEXT
193
194 # -----------------------------------------------------------
195 # Connectivity integration
196 # -----------------------------------------------------------
197 AC_ARG_WITH(connectivity,
198               AS_HELP_STRING([--with-connectivity=@<:@nm/connman/auto/no@:>@],
199                              [build with connectivity support]), ,
200                              with_connectivity=auto)
201
202 if test "x$with_connectivity" = "xno"; then
203    have_nm=no
204    have_connman=no
205
206 elif test "x$with_connectivity" = "xconnman"; then
207
208    PKG_CHECK_MODULES(CONNMAN,
209    [
210       dbus-glib-1
211    ], have_connman="yes", have_connman="no")
212
213    if test "x$have_connman" = "xyes"; then
214       AC_DEFINE(HAVE_CONNMAN, 1, [Define if you have connman dependencies])
215       have_nm=no
216    fi
217
218 else
219
220    PKG_CHECK_MODULES(NETWORK_MANAGER,
221    [
222       libnm_glib >= $NETWORK_MANAGER_REQUIRED
223    ], have_nm="yes", have_nm="no")
224
225    if test "x$have_nm" = "xyes"; then
226       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
227       have_connman=no
228    else
229       PKG_CHECK_MODULES(NETWORK_MANAGER,
230       [
231           libnm-glib >= $NETWORK_MANAGER_REQUIRED
232       ], have_nm="yes", have_nm="no")
233
234       if test "x$have_nm" = "xyes"; then
235       AC_DEFINE(HAVE_NM, 1, [Define if you have libnm-glib])
236       have_connman=no
237       fi
238    fi
239 fi
240
241 if test "x$with_connectivity" = "xconnman" -a "x$have_connman" != "xyes"; then
242    AC_MSG_ERROR([Couldn't find connman dependencies.])
243 fi
244
245 if test "x$with_connectivity" = "xnm" -a "x$have_nm" != "xyes"; then
246    AC_MSG_ERROR([Couldn't find libnm-glib dependencies.])
247 fi
248
249 AM_CONDITIONAL(HAVE_NM, test "x$have_nm" = "xyes")
250 AM_CONDITIONAL(HAVE_CONNMAN, test "x$have_connman" = "xyes")
251
252 # -----------------------------------------------------------
253 # Webkit
254 # -----------------------------------------------------------
255 AC_ARG_ENABLE(webkit,
256               AS_HELP_STRING([--enable-webkit=@<:@no/yes/auto@:>@],
257                              [build with webkit support]), ,
258                              enable_webkit=auto)
259
260 if test "x$enable_webkit" != "xno"; then
261    PKG_CHECK_MODULES(WEBKIT,
262    [
263       webkit-1.0 >= $WEBKIT_REQUIRED
264    ], have_webkit="yes", have_webkit="no")
265
266    if test "x$have_webkit" = "xyes"; then
267       AC_DEFINE(HAVE_WEBKIT, 1, [Define if you have libwebkitgtk])
268    fi
269 else
270    have_webkit=no
271 fi
272
273 if test "x$enable_webkit" = "xyes" -a "x$have_webkit" != "xyes"; then
274    AC_MSG_ERROR([Couldn't find webkit dependencies.])
275 fi
276 AM_CONDITIONAL(HAVE_WEBKIT, test "x$have_webkit" = "xyes")
277
278 # -----------------------------------------------------------
279 # spellchecking checks: enchant and iso-codes
280 # -----------------------------------------------------------
281 AC_ARG_ENABLE(spell,
282               AS_HELP_STRING([--enable-spell=@<:@no/yes/auto@:>@],
283                              [Enable spell checking]), ,
284                              enable_spell=auto)
285
286 if test "x$enable_spell" != "xno"; then
287    PKG_CHECK_MODULES(ENCHANT,
288    [
289       enchant >= $ENCHANT_REQUIRED,
290       iso-codes >= $ISO_CODES_REQUIRED
291    ], have_enchant="yes", have_enchant="no")
292
293    if test "x$have_enchant" = "xyes"; then
294       AC_MSG_CHECKING([whether iso-codes has iso-639 and iso-3166 domains])
295       if $PKG_CONFIG --variable=domains iso-codes | grep 639 > /dev/null && \
296          $PKG_CONFIG --variable=domains iso-codes | grep 3166 > /dev/null ; then
297             AC_DEFINE_UNQUOTED(ISO_CODES_PREFIX, ["`$PKG_CONFIG --variable=prefix iso-codes`"], [ISO codes prefix])
298             AC_DEFINE(HAVE_ENCHANT, [], [Define if you have libenchant])
299             result=yes
300       else
301             result=no
302             have_enchant="no"
303       fi
304       AC_MSG_RESULT([$result])
305    fi
306 else
307    have_enchant=no
308 fi
309
310 if test "x$enable_spell" = "xyes" -a "x$have_enchant" != "xyes"; then
311    AC_MSG_ERROR([Couldn't find spell dependencies.])
312 fi
313
314 AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes")
315
316 # -----------------------------------------------------------
317 # Map view checks: libchamplain
318 # -----------------------------------------------------------
319 AC_ARG_ENABLE(map,
320               AS_HELP_STRING([--enable-map=@<:@no/yes/auto@:>@],
321                              [Enable map view]), ,
322                              enable_map=auto)
323
324 if test "x$enable_map" != "xno"; then
325    PKG_CHECK_MODULES(LIBCHAMPLAIN,
326    [
327       champlain-0.4 >= $LIBCHAMPLAIN_REQUIRED,
328       champlain-gtk-0.4 >= $LIBCHAMPLAIN_GTK_REQUIRED
329       clutter-gtk-0.10 >= $CLUTTER_GTK_REQUIRED
330    ], have_libchamplain="yes", have_libchamplain="no")
331
332    if test "x$have_libchamplain" = "xyes"; then
333       AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [Define if you have libchamplain])
334    fi
335 else
336    have_libchamplain=no
337 fi
338
339 if test "x$enable_map" = "xyes" -a "x$have_libchamplain" != "xyes"; then
340    AC_MSG_ERROR([Couldn't find map view dependencies.])
341 fi
342
343 AM_CONDITIONAL(HAVE_LIBCHAMPLAIN, test "x$have_libchamplain" = "xyes")
344
345 # -----------------------------------------------------------
346 # location checks: geoclue
347 # -----------------------------------------------------------
348 AC_ARG_ENABLE(location,
349               AS_HELP_STRING([--enable-location=@<:@no/yes/auto@:>@],
350                              [Enable location awareness]), ,
351                              enable_location=auto)
352
353 if test "x$enable_location" != "xno"; then
354    PKG_CHECK_MODULES(GEOCLUE,
355    [
356       geoclue >= $GEOCLUE_REQUIRED
357    ], have_geoclue="yes", have_geoclue="no")
358
359    if test "x$have_geoclue" = "xyes"; then
360       AC_DEFINE(HAVE_GEOCLUE, 1, [Define if you have geoclue])
361    fi
362 else
363    have_geoclue="no"
364 fi
365
366 if test "x$enable_location" = "xyes" -a "x$have_geoclue" != "xyes"; then
367    AC_MSG_ERROR([Couldn't find location dependencies.])
368 fi
369
370 AM_CONDITIONAL(HAVE_GEOCLUE, test "x$have_geoclue" = "xyes")
371 AC_SUBST(GEOCLUE_CFLAGS)
372 AC_SUBST(GEOCLUE_LIBS)
373
374 # -----------------------------------------------------------
375 # meego widgets support
376 # -----------------------------------------------------------
377 AC_ARG_ENABLE(meego,
378               AS_HELP_STRING([--enable-meego=@<:no/yes@:>@],
379                              [Enable meego widgets]), ,
380                              enable_meego=no)
381
382 if test "x$enable_meego" != "xno"; then
383     PKG_CHECK_MODULES(MEEGO,
384     [
385        mx-gtk-1.0
386     ], have_meego="yes", have_meego="no")
387
388     if test "x$have_meego" = "xyes"; then
389        AC_DEFINE(HAVE_MEEGO, 1, [Define if you have meego])
390     fi
391 else
392    have_meego="no"
393 fi
394
395 if test "x$enable_meego" = "xyes" -a "x$have_meego" != "xyes"; then
396    AC_MSG_ERROR([Couldn't find meego dependencies.])
397 fi
398
399 AM_CONDITIONAL(HAVE_MEEGO, test "x$have_meego" = "xyes")
400 AC_SUBST(MEEGO_CFLAGS)
401 AC_SUBST(MEEGO_LIBS)
402
403 # -----------------------------------------------------------
404 # nautilus-sendto
405 # -----------------------------------------------------------
406 AC_ARG_ENABLE(nautilus-sendto,
407               AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
408                              [build nautilus-sendto plugin]), ,
409                              enable_nautilus_sendto=auto)
410
411 if test "x$enable_nautilus_sendto" != "xno"; then
412    PKG_CHECK_MODULES(NST,
413    [
414       nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
415    ], have_nst="yes", have_nst="no")
416 else
417    have_nst=no
418 fi
419
420 if test "x$enable_nautilus_sendto" = "xyes" -a "x$have_nst" != "xyes"; then
421    AC_MSG_ERROR([Couldn't find nautilus-sendto dependencies.])
422 fi
423
424 AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
425
426 # -----------------------------------------------------------
427 # new, single-window control center
428 # -----------------------------------------------------------
429 AC_ARG_ENABLE(control_center_embedding,
430               AS_HELP_STRING([--enable-control-center-embedding=@<:@no/yes/auto@:>@],
431                              [Enable support for single-window control center]),
432                              , enable_control_center_embedding=auto)
433
434 if test "x$enable_control_center_embedding" != "xno"; then
435    PKG_CHECK_MODULES(CONTROL_CENTER_EMBEDDING,
436    [
437       libgnome-control-center-extension
438    ], have_control_center_embedding="yes", have_control_center_embedding="no")
439
440    if test "x$have_control_center_embedding" = "xyes"; then
441       AC_DEFINE(HAVE_CONTROL_CENTER_EMBEDDING, 1, [Define if you have the single-window control center])
442    fi
443 else
444    have_control_center_embedding="no"
445 fi
446
447 if test "x$enable_control_center_embedding" = "xyes" -a "x$have_control_center_embedding" != "xyes"; then
448    AC_MSG_ERROR([Couldn't find single-window control center dependencies.])
449 fi
450
451 AM_CONDITIONAL(HAVE_CONTROL_CENTER_EMBEDDING, test "x$have_control_center_embedding" = "xyes")
452 AC_SUBST(CONTROL_CENTER_EMBEDDING_CFLAGS)
453 AC_SUBST(CONTROL_CENTER_EMBEDDING_LIBS)
454
455 # -----------------------------------------------------------
456 # Coding style checks
457 # -----------------------------------------------------------
458 AC_ARG_ENABLE(coding-style-checks,
459   AC_HELP_STRING([--disable-coding-style-checks],
460                  [don't check coding style using grep]),
461     [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
462
463 AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
464 # -----------------------------------------------------------
465
466 AC_OUTPUT([
467    Makefile
468    data/Makefile
469    data/empathy.desktop.in
470    data/empathy-accounts.desktop.in
471    data/icons/Makefile
472    extensions/Makefile
473    po/Makefile.in
474    libempathy/Makefile
475    libempathy-gtk/Makefile
476    src/Makefile
477    nautilus-sendto-plugin/Makefile
478    help/Makefile
479    tests/Makefile
480    tests/interactive/Makefile
481    tests/xml/Makefile
482    tools/Makefile
483 ])
484
485 echo "
486 Configure summary:
487
488         Compiler....................:  ${CC}
489         Compiler Flags..............:  ${CFLAGS} ${ERROR_CFLAGS}
490         Prefix......................:  ${prefix}
491         Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
492
493     Features:
494         Spell checking (enchant)....:  ${have_enchant}
495         Display maps (libchamplain).:  ${have_libchamplain}
496         Location awareness (Geoclue):  ${have_geoclue}
497         Adium themes (Webkit).......:  ${have_webkit}
498         Meego widgets ..............:  ${have_meego}
499         Control center embedding....:  ${have_control_center_embedding}
500
501     Connectivity:
502         NetworkManager integration..:  ${have_nm}
503         ConnMan integration.........:  ${have_connman}
504
505     Extras:
506         Nautilus-sendto plugin......:  ${have_nst}
507 "