Release 3.90.5
[modest] / configure.ac
1 # Copyright (c) 2006,2007 Nokia Corporation
2 # All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7 #
8 # * Redistributions of source code must retain the above copyright
9 #   notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above copyright
11 #   notice, this list of conditions and the following disclaimer in the
12 #   documentation and/or other materials provided with the distribution.
13 # * Neither the name of the Nokia Corporation nor the names of its
14 #   contributors may be used to endorse or promote products derived from
15 #   this software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18 # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21 # OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 AC_INIT([modest],[3.90.5],[http://maemo.org])
30 AC_CONFIG_HEADERS([config.h])
31
32 m4_define([modest_api_major_version], [1])
33 m4_define([modest_api_minor_version], [99])
34 m4_define([modest_api_micro_version], [0])
35 m4_define([modest_api_version], [modest_api_major_version.modest_api_minor_version.modest_api_micro_version])
36
37
38 AC_CONFIG_SRCDIR(src/modest-main.c)
39 AM_INIT_AUTOMAKE([dist-bzip2])
40
41 # Support silent build rules, requires at least automake-1.11. Disable
42 # by either passing --disable-silent-rules to configure or passing V=1
43 # to make
44 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
45
46 MODEST_API_MAJOR_VERSION=modest_api_major_version
47 MODEST_API_MINOR_VERSION=modest_api_minor_version
48 MODEST_API_MICRO_VERSION=modest_api_micro_version
49 MODEST_API_VERSION=modest_api_version
50 AC_SUBST(MODEST_API_MAJOR_VERSION)
51 AC_SUBST(MODEST_API_MINOR_VERSION)
52 AC_SUBST(MODEST_API_MICRO_VERSION)
53 AC_SUBST(MODEST_API_VERSION)
54
55 ALL_LINGUAS="en_GB"
56
57 MODEST_LOCALE_DIR='$prefix/${DATADIRNAME}/locale'
58 AM_GLIB_DEFINE_LOCALEDIR([MODEST_LOCALE_DIR])
59 AM_GLIB_GNU_GETTEXT
60
61 if test x$prefix = xNONE; then
62    prefix=/usr/local
63 fi
64 AC_SUBST(prefix)
65
66 AC_PROG_CC
67 AC_PROG_CXX
68 AM_PROG_CC_STDC
69 AM_PROG_CC_C_O
70 AC_HEADER_STDC
71 AC_PROG_LIBTOOL
72
73 # Initialize pkg-config stuff
74 PKG_PROG_PKG_CONFIG()
75
76 # Option to enable debugging
77 AC_ARG_ENABLE(debug,
78               [AC_HELP_STRING([--enable-debug],[Debugging (default=no)])],
79               [with_debug=yes], [with_debug=no])
80
81 if test "x$with_debug" == "xyes" ; then
82         CFLAGS="$CFLAGS -ggdb -O0 -DDEBUG -Wall"
83 else
84         CFLAGS="$CFLAGS -O2 -Wall"
85 fi
86
87 # Option to enable debugging
88 AC_ARG_ENABLE(gcov,
89               [AC_HELP_STRING([--enable-gcov],[Coverage reporting (default=no)])],
90               [with_gcov=yes], [with_gcov=no])
91
92 if test "x$with_gcov" == "xyes" ; then
93         CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
94         LDFLAGS="$LDFLAGS -lgcov"
95 fi
96
97 dnl ------
98 dnl WebKit
99 dnl ------
100
101 # Option to enable debugging
102 with_webkit=no
103 AC_ARG_ENABLE(webkit,
104               [AC_HELP_STRING([--enable-webkit],[Enable webkit support (default=no)])],
105               [with_webkit=yes], [with_webkit=no])
106
107 if test "x$with_webkit" == "xyes" ; then
108    PKG_CHECK_EXISTS(MODEST_WEBKIT,webkit-1.0,have_webkit=true,have_webkit=false)
109    AC_SUBST(MODEST_WEBKIT_CFLAGS)
110    AC_SUBST(MODEST_WEBKIT_LIBS)
111    AC_DEFINE_UNQUOTED(MODEST_USE_WEBKIT, 1, ["Whether modest is being build with webkit support."])
112 fi
113
114 AM_CONDITIONAL(MODEST_USE_WEBKIT,test "x$with_webkit" == "xyes")
115
116
117 dnl -------
118 dnl GtkHTML
119 dnl -------
120
121 AC_MSG_CHECKING(for installed version of libgtkhtml3)
122 pkg-config --exists libgtkhtml-3.14
123 retval=$?
124 gtk_html_found=false
125 if test $retval -eq 0 ; then
126     gtk_html_found=true
127     gtk_html_version=3.14
128 else
129     pkg-config --exists libgtkhtml-3.8
130     retval=$?
131     if test $retval -eq 0 ; then
132       gtk_html_found=true
133       gtk_html_version=3.8
134     else
135           if [ $gui = "true" ]; then
136             AC_MSG_RESULT(libgtkhtml 3.4 or higher is not found!)
137           fi
138     fi
139 fi
140
141 if [ $gtk_html_found = "true" ]; then
142    version=`pkg-config --modversion libgtkhtml-${gtk_html_version}`
143    AC_MSG_RESULT(found version $version)
144 else
145    AC_MSG_ERROR([install gtkhtml 3.8 or newer])
146 fi
147
148 dnl # GLib/Gobject/Gtk/Gconf => mandatory
149
150 PKG_CHECK_MODULES(MODEST_GSTUFF,glib-2.0 >= 2.6 gobject-2.0 gtk+-2.0 >= 2.6 gconf-2.0 gnome-vfs-2.0 libgtkhtml-${gtk_html_version} libtinymail-1.0 libtinymail-camel-1.0 libtinymail-gnomevfs-1.0 libtinymailui-1.0 libtinymailui-gtk-1.0)
151 AC_SUBST(MODEST_GSTUFF_CFLAGS)
152 AC_SUBST(MODEST_GSTUFF_LIBS)
153
154 modest_save_cflags="$CFLAGS"
155 modest_save_libs="$LIBS"
156 PKG_CHECK_MODULES(MODEST_GTKHTML,libgtkhtml-${gtk_html_version})
157 AC_SUBST(MODEST_GTKHTML_CFLAGS)
158 AC_SUBST(MODEST_GTKHTML_LIBS)
159 CFLAGS="$MODEST_GTKHTML_CFLAGS"
160 LIBS="$MODEST_GTKHTML_LIBS"
161 AC_CHECK_DECLS([gtk_widget_tap_and_hold_setup],[],[], [#include <gtk/gtk.h>])
162 AC_CHECK_FUNCS(gtk_html_set_max_image_size)
163 AC_SUBST(HAVE_GTK_HTML_SET_MAX_IMAGE_SIZE)
164 AC_CHECK_FUNCS(gtk_html_get_selection_area)
165 AC_SUBST(HAVE_GTK_HTML_GET_SELECTION_AREA)
166 AC_CHECK_FUNCS(gtk_html_set_allow_dnd)
167 AC_SUBST(HAVE_GTK_HTML_SET_ALLOW_DND)
168 AC_CHECK_FUNCS(gtk_html_set_default_engine)
169 AC_SUBST(HAVE_GTK_HTML_SET_DEFAULT_ENGINE)
170 AC_CHECK_FUNCS(gtk_html_set_word_char_wrapping)
171 AC_SUBST(HAVE_GTK_HTML_SET_WORD_CHAR_WRAPPING)
172 AC_CHECK_FUNCS(gtk_tree_view_column_get_cell_data_hint)
173 AC_SUBST(HAVE_GTK_TREE_VIEW_COLUMN_GET_CELL_DATA_HINT)
174 CFLAGS="$modest_save_cflags"
175 LIBS="$modest_save_libs"
176
177 dnl --------------- PLATFORM -----------
178 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome])
179
180 AC_ARG_WITH(platform, [
181 Target platform:
182   --with-platform=detect  detect target platform (default)
183   --with-platform=gnome   build for Gnome
184   --with-platform=maemo   build for Maemo
185 ],
186 [case "${with_platform}" in
187        gnome|maemo|detect)    MODEST_PLATFORM=${with_platform};;
188        *)        AC_MSG_ERROR([Unknown platform selected]);;
189 esac], [MODEST_PLATFORM=detect])
190
191 if test "$MODEST_PLATFORM" = "detect"; then
192         MODEST_PLATFORM="$detected_platform"
193         with_platform=$detected_platform
194 fi
195
196 if test "$with_platform" = "maemo"; then
197         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_MAEMO -DMODEST_API_VERSION=${MODEST_API_VERSION}"
198         PKG_CHECK_MODULES(LIBMODEST_DBUS_CLIENT,libmodest-dbus-client-1.0 >= 3.2.0)
199 elif test "$with_platform" = "gnome"; then
200         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME -DMODEST_API_VERSION=${MODEST_API_VERSION}"
201 fi
202 AC_SUBST(MODEST_PLUGIN_DEFINES)
203
204 dnl ---------- PLATFORM: *DBUS API* -----------
205 if test "x$with_platform" == "xgnome"; then
206    PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 glib-2.0 >= 2.8 libnotify)
207    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
208 else
209    have_dbusapi=true
210    PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 )
211    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
212 fi
213 AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue")
214 AC_SUBST(MODEST_PLATFORM)
215
216
217 dnl --------------- TOOLKIT SELECTION -----------
218 AC_ARG_WITH(toolkit, [
219 Target toolkit:
220   --with-toolkit=detect  detect target toolkit (default)
221   --with-toolkit=gtk   build for Gnome
222   --with-toolkit=hildon2   build for Hildon 2.x
223 ],
224 [case "${with_toolkit}" in
225        gtk|hildon2|detect)    MODEST_TOOLKIT=${with_toolkit};;
226        *)        AC_MSG_ERROR([Unknown toolkit selected]);;
227 esac], [MODEST_TOOLKIT=detect])
228
229 have_hildon2=false
230 have_gtk=false
231
232 if test "$MODEST_TOOLKIT" = "detect"; then
233    PKG_CHECK_EXISTS(hildon-1 >= 2.1.0 hildon-fm-2, have_hildon2=true, have_hildon2=false)
234    PKG_CHECK_EXISTS(glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify, have_gtk=true, have_gtk=false)
235    if test "x$have_hildon2" = "xtrue"; then
236       detected_toolkit=hildon2
237       hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
238       echo "DETECTED HILDON 2 $have_hildon2 (API is $hildon_api)."
239    elif test "x$have_gtk" == "xtrue"; then
240       detected_toolkit=gtk
241       echo "DETECTED GTK."
242    fi
243    MODEST_TOOLKIT="$detected_toolkit"
244    with_toolkit=$detected_toolkit
245 fi
246
247 dnl -------- TOOLKIT SELECTION: *HILDON API* -----------
248 if test "x$with_toolkit" == "xhildon2"; then
249    hildonpkgs="hildon-1 hildon-fm-2"
250    hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
251    AC_DEFINE_UNQUOTED(MODEST_HILDON_API, $hildon_api, ["the API version of hildon"])
252    MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_HILDON_API=$hildon_api"
253    MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON2"
254 elif test "x$with_toolkit" == "xgtk"; then
255      MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GTK"
256 fi
257
258 dnl -------- TOOLKIT SELECTION: *TOOLKIT DIR* -----------
259 if test "x$with_toolkit" == "xgtk"; then
260    PKG_CHECK_MODULES(MODEST_TOOLKIT,glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
261    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_GTK, 1, ["Whether modest is being build for the gtk toolkit."])
262    MODEST_TOOLKIT_DIR=gtk
263 elif test "$with_toolkit" = "hildon2"; then
264    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON2, 1, ["Whether modest is being build for the hildon2 toolkit."])
265    MODEST_TOOLKIT_DIR=hildon2
266 fi
267 AC_SUBST(MODEST_TOOLKIT)
268 AC_SUBST(MODEST_TOOLKIT_DIR)
269
270
271 dnl --------------- HILDON & PLUGIN PKGS -----------
272 pluginpkgs=$hildonpkgs
273 dnl echo "Plugin Packages $pluginpkgs"
274 AC_SUBST(pluginpkgs)
275
276 use_profile_data=false
277 # Plugin packages must not include libcanberra and libprofile
278 if test "x$with_platform" == "xmaemo"; then
279    hildonpkgs="$hildonpkgs libcanberra"
280    AC_CHECK_HEADER([profiled/keys_nokia.h], use_profile_data=true, use_profile_data=false)
281    if test "$use_profile_data" = "true"; then
282       hildonpkgs="$hildonpkgs profile"
283       AC_DEFINE_UNQUOTED(MODEST_USE_PROFILE, 1, ["Use the Profile data include"])
284 dnl      echo "HILDON 2 PACKAGES $hildonpkgs"
285    fi
286 fi
287 AC_SUBST(hildonpkgs)
288 PKG_CHECK_MODULES(MODEST_TOOLKIT,$hildonpkgs)
289
290 dnl -------------------- MAEMO LAUNCHER STUFF ------------
291 AC_ARG_ENABLE([maemo-launcher],
292               [AS_HELP_STRING([--enable-maemo-launcher],
293                               [build with maemo-launcher support])],
294                               [case "${enableval}" in
295                                yes) maemo_launcher=true ;;
296                                no)  maemo_launcher=false ;;
297                                *) AC_MSG_ERROR([bad value ${enableval} for --enable-maemo-launcher]) ;;
298                                esac], [maemo_launcher=false])
299 if test x$maemo_launcher = xtrue
300 then
301         PKG_CHECK_MODULES(MAEMO_LAUNCHER, [maemo-launcher-app])
302         AC_SUBST(MAEMO_LAUNCHER_CFLAGS)
303         AC_SUBST(MAEMO_LAUNCHER_LIBS)
304         MAEMO_LAUNCHER_MODEST_LDFLAGS="-shared "
305 else
306         MAEMO_LAUNCHER_MODEST_LDFLAGS="-export-dynamic "
307 fi
308 AC_SUBST(MAEMO_LAUNCHER_MODEST_LDFLAGS)
309
310 dnl --------------- EDITOR -----------
311 PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
312 if test "x$have_wpeditor" == "xfalse"; then
313    PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)
314    if test "x$have_libwpeditorplus" == "xtrue"; then
315       wpeditor="libwpeditor-plus"
316       AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])
317    else
318       AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
319    fi
320 else
321    wpeditor="wpeditor"
322    AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])
323 fi
324
325 dnl --------------- LIBALARM -----------
326 if test "x$with_platform" == "xmaemo"; then
327    PKG_CHECK_MODULES(MODEST_LIBALARM, alarm, have_libalarm=true,have_libalarm=false)
328    if test "x$have_libalarm" == "xtrue"; then
329       AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."])
330       AC_SUBST(MODEST_LIBALARM_CFLAGS)
331       AC_SUBST(MODEST_LIBALARM_LIBS)
332    fi
333 fi
334
335 dnl --------------- MCE -----------
336 if test "x$with_platform" == "xmaemo"; then
337 PKG_CHECK_MODULES(MODEST_MCE,mce,have_mce=true,have_mce=false)
338 if test "x$have_mce" == "xtrue"; then
339    mce="mce"
340    AC_DEFINE_UNQUOTED(MODEST_HAVE_MCE, 1, ["Whether mce is used."])
341    AC_SUBST(MODEST_MCE_CFLAGS)
342    AC_SUBST(MODEST_MCE_LIBS)
343 else
344    mce=""
345 fi
346 fi
347
348 dnl --------------- LIBCONIC -----------
349 dnl check for libconic; this is a trick to check whether we run on a
350 dnl 'real' maemo platform, or on, say, ubuntu embedded. This determines
351 dnl whether we build with the non-hildon GTK+
352
353 if test "x$with_platform" == "xmaemo"; then
354 PKG_CHECK_MODULES(MODEST_LIBCONIC,conic,have_libconic=true,have_libconic=false)
355 if test "x$have_libconic" == "xtrue"; then
356    AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_GTK,1,["Whether modest is being built with Hildon/Gtk"])
357    AC_DEFINE_UNQUOTED(MODEST_HAVE_CONIC,1,["Whether modest has conic available"])
358    AC_SUBST(MODEST_LIBCONIC_CLAGS)
359    AC_SUBST(MODEST_LIBCONIC_LIBS)
360 else
361 # if we define this, tinymail will not try to #include conic headers
362    CFLAGS="$CFLAGS -DLIBTINYMAIL_MAEMO_WITHOUT_CONIC"
363 fi
364 fi
365
366 if test "x$with_toolkit" != "xgtk"; then
367 MODEST_TOOLKIT_CFLAGS="$MODEST_TOOLKIT_CFLAGS -DMAEMO_CHANGES"
368 fi
369
370 dnl --------------- NOTIFICATION STUFF -----------
371 if test "x$with_toolkit" != "xgtk"; then
372    PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false)
373    if test "x$have_hildon_notify" == "xtrue"; then
374       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"])
375    fi
376 fi
377
378 dnl --------------- URI/MIME STUFF -----------
379 if test "x$with_toolkit" != "xgtk"; then
380    PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false)
381    if test "x$have_hildonmime" == "xtrue"; then
382      mimelib="hildon-mime"
383      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])
384    fi
385 fi
386
387 dnl --------------- ADDRESSBOOK --------------
388 if test "x$with_platform" == "xmaemo"; then
389    PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false)
390
391    if test "x$have_abook" == "xtrue"; then
392
393      abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1`
394      AC_SUBST(MODEST_ABOOK_CFLAGS)
395      AC_SUBST(MODEST_ABOOK_LIBS)
396
397      modest_save_cflags="$CFLAGS"
398      modest_save_libs="$LIBS"
399      CFLAGS="$MODEST_ABOOK_CFLAGS"
400      LIBS="$MODEST_ABOOK_LIBS"
401      AC_CHECK_FUNCS(osso_abook_contact_chooser_set_visible_func)
402      AC_SUBST(HAVE_OSSO_ABOOK_CONTACT_CHOOSER_SET_VISIBLE_FUNC)
403      CFLAGS="$modest_save_cflags"
404      LIBS="$modest_save_libs"
405
406      AC_DEFINE_UNQUOTED(OSSO_ABOOK_ENABLE_DEPRECATED, 1, ["use deprecated addressbook API"])
407      AC_DEFINE_UNQUOTED(MODEST_ABOOK_API, $abook_api, ["the API version of osso-addressbook"])
408      AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK, 1, ["whether we have osso-addressbook"])
409    fi
410
411    # Check the presence of the calendar widgets
412    PKG_CHECK_MODULES(MODEST_CALENDAR_WIDGETS,calendar-ui-widgets,have_calendar_widgets=true,have_calendar_widgets=false)
413    AC_SUBST(MODEST_CALENDAR_WIDGETS_CFLAGS)
414    AC_SUBST(MODEST_CALENDAR_WIDGETS_LIBS)
415    if test "x$have_calendar_widgets" == "xtrue"; then
416       AC_DEFINE_UNQUOTED(MODEST_USE_CALENDAR_WIDGETS, 1, ["Use the Calendar color widgets"])
417    fi
418 fi
419
420 AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue")
421
422 dnl --------------- LIBTIME --------------
423 AC_CHECK_HEADERS([clockd/libtime.h], have_libtime=true, have_libtime=false)
424
425 if test "x$have_libtime" == "xtrue"; then
426    AC_DEFINE_UNQUOTED(MODEST_USE_LIBTIME, 1, ["use libtime API"])
427    MODEST_LIBTIME_LIBS=-ltime
428 else
429    MODEST_LIBTIME_LIBS=
430 fi
431 AC_SUBST(MODEST_LIBTIME_LIBS)
432
433 dnl --------------- IPHB --------------
434 AC_CHECK_HEADERS([iphbd/libiphb.h], have_libiphb=true, have_libiphb=false)
435
436 if test "x$have_libiphb" == "xtrue"; then
437    AC_DEFINE_UNQUOTED(MODEST_USE_IPHB, 1, ["use IP Heartbeat API"])
438    MODEST_LIBIPHB_LIBS=-liphb
439 else
440    MODEST_LIBIPHB_LIBS=
441 fi
442 AC_SUBST(MODEST_LIBIPHB_LIBS)
443
444
445 dnl --------------- GETTEXT --------------
446 AM_GLIB_GNU_GETTEXT
447 IT_PROG_INTLTOOL([0.35.0])
448
449 GETTEXT_PACKAGE=modest
450 AC_SUBST(GETTEXT_PACKAGE)
451 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
452
453
454 dnl --------------- SETTINGS FOR MAEMO --------------
455 if test "x$with_platform" == "xmaemo"; then
456
457   # warnings are errors, but don't check format errors, because
458   # it breaks with logical ids
459   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
460
461    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
462    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
463    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
464    backupsettingsdir=/etc/osso-backup/applications
465    prebackupdir=/etc/osso-backup/pre-backup.d/
466    restoredir=/etc/osso-backup/restore.d/always/
467    ossocudscriptsdir=/etc/osso-cud-scripts
468    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
469    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
470    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
471    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
472    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
473    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
474    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
475    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
476
477    dbus_api="dbus_api"
478    AC_SUBST(dbus_api)
479
480    # Define as variables in Makefiles
481    AC_SUBST(desktopentrydir)
482    AC_SUBST(serviceentrydir)
483    AC_SUBST(backupsettingsdir)
484    AC_SUBST(prebackupdir)
485    AC_SUBST(restoredir)
486    AC_SUBST(ossocudscriptsdir)
487    AC_SUBST(localedir)
488    AC_SUBST(pixmapdir)
489    AC_SUBST(icon_26x26dir)
490    AC_SUBST(icon_34x34dir)
491    AC_SUBST(icon_40x40dir)
492    AC_SUBST(icon_50x50dir)
493    AC_SUBST(icon_scalabledir)
494    AC_SUBST(pluginlibdir)
495    AC_SUBST(plugindesktopentrydir)
496 else
497    desktopentrydir=$datadir/applications   
498    AC_SUBST(desktopentrydir)
499 fi
500
501 dnl --------------- TESTING -------------------
502 build_tests=false
503 AC_ARG_ENABLE(tests,
504 AC_HELP_STRING([--enable-tests],
505         [Build tests (no, yes)]),
506 [case "${enableval}" in
507       yes)
508         build_tests=true ;;
509       *) build_tests=false ;;
510 esac],[build_tests=false])
511 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
512
513 if test x$build_tests = xtrue; then
514    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
515 fi
516
517 dnl ------------ TESTING: GTK-DOC ----------
518 build_docs=false
519 AC_ARG_ENABLE(docs,
520 AC_HELP_STRING([--enable-docs],
521         [Build documentation (yes, no)]),
522 [case "${enableval}" in
523       yes)
524         build_docs=true ;;
525       *) build_docs=false ;;
526 esac],[build_docs=false])
527 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
528
529 GTK_DOC_CHECK([1.0])
530
531 dnl ---------------- OUTPUT --------------
532 AC_OUTPUT([
533 po/Makefile.in
534 Makefile
535 man/Makefile
536 src/Makefile
537 src/modest-plugin-1.0.pc
538 src/dbus_api/Makefile
539 src/gtk/Makefile
540 src/hildon2/Makefile
541 src/widgets/Makefile
542 docs/Makefile
543 docs/reference/Makefile
544 tests/Makefile
545 tests/dbus_api/Makefile
546 src/hildon2/modest.desktop
547 src/hildon2/com.nokia.modest.service
548 ])
549
550
551 echo
552 echo "modest configure results"
553 echo "-----------------------------------"
554 echo "Platform         : $with_platform"
555 echo "Toolkit          : $with_toolkit"
556 echo "Prefix           : ${prefix}"
557 echo "Build tests      : $build_tests"
558 echo "Build docs       : $build_docs"
559 echo "Gettext Package  : $GETTEXT_PACKAGE"
560
561 if test "x$with_platform" == "xmaemo"; then
562    echo "Maemo Launcher   : $maemo_launcher"
563    echo "Editor lib       : $wpeditor"
564    echo "Addressbook      : $have_abook"
565    echo "libconic support : $have_libconic"
566    echo "Alarm            : $have_libalarm"
567    echo "MCE              : $have_mce"
568    echo "Hildon-Notify    : $have_hildon_notify"
569    echo "Calendar widgets : $have_calendar_widgets"
570 fi
571
572 if [ $gtk_html_found = "true" ]; then
573    echo "GtkHTML version  : $gtk_html_version"
574 fi
575 echo "Libtime          : $have_libtime"
576
577 echo "CFLAGS           : $CFLAGS"
578 echo "Debug version    : $with_debug"
579 echo ""
580 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
581 echo ""