Added the dbus method handler for OpenEditAccountsDialog
[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],[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 MODEST_API_MAJOR_VERSION=modest_api_major_version
42 MODEST_API_MINOR_VERSION=modest_api_minor_version
43 MODEST_API_MICRO_VERSION=modest_api_micro_version
44 MODEST_API_VERSION=modest_api_version
45 AC_SUBST(MODEST_API_MAJOR_VERSION)
46 AC_SUBST(MODEST_API_MINOR_VERSION)
47 AC_SUBST(MODEST_API_MICRO_VERSION)
48 AC_SUBST(MODEST_API_VERSION)
49
50 ALL_LINGUAS="en_GB"
51
52 MODEST_LOCALE_DIR='$prefix/${DATADIRNAME}/locale'
53 AM_GLIB_DEFINE_LOCALEDIR([MODEST_LOCALE_DIR])
54 AM_GLIB_GNU_GETTEXT
55
56 if test x$prefix = xNONE; then
57    prefix=/usr/local
58 fi
59 AC_SUBST(prefix)
60
61 AC_PROG_CC
62 AC_PROG_CXX
63 AM_PROG_CC_STDC
64 AM_PROG_CC_C_O
65 AC_HEADER_STDC
66 AC_PROG_LIBTOOL
67
68
69 # Option to enable debugging
70 AC_ARG_ENABLE(debug,
71               [AC_HELP_STRING([--enable-debug],[Debugging (default=no)])],
72               [with_debug=yes], [with_debug=no])
73
74 if test "x$with_debug" == "xyes" ; then
75         CFLAGS="$CFLAGS -ggdb -O0 -DDEBUG -Wall"
76 else
77         CFLAGS="$CFLAGS -O2 -Wall"
78 fi
79
80 # Option to enable debugging
81 AC_ARG_ENABLE(gcov,
82               [AC_HELP_STRING([--enable-gcov],[Coverage reporting (default=no)])],
83               [with_gcov=yes], [with_gcov=no])
84
85 if test "x$with_gcov" == "xyes" ; then
86         CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
87         LDFLAGS="$LDFLAGS -lgcov"
88 fi
89
90
91
92 dnl -------
93 dnl GtkHTML
94 dnl -------
95
96 AC_MSG_CHECKING(for installed version of libgtkhtml3)
97 pkg-config --exists libgtkhtml-3.14
98 retval=$?
99 gtk_html_found=false
100 if test $retval -eq 0 ; then
101     gtk_html_found=true
102     gtk_html_version=3.14
103 else
104     pkg-config --exists libgtkhtml-3.8
105     retval=$?
106     if test $retval -eq 0 ; then
107       gtk_html_found=true
108       gtk_html_version=3.8
109     else
110           if [ $gui = "true" ]; then
111             AC_MSG_RESULT(libgtkhtml 3.4 or higher is not found!)
112           fi
113     fi
114 fi
115
116 if [ $gtk_html_found = "true" ]; then
117    version=`pkg-config --modversion libgtkhtml-${gtk_html_version}`
118    AC_MSG_RESULT(found version $version)
119 else
120    AC_MSG_ERROR([install gtkhtml 3.8 or newer])
121 fi
122
123 PKG_CHECK_MODULES(LIBMODEST_DBUS_CLIENT,libmodest-dbus-client-1.0 >= 3.2.0)
124 dnl # GLib/Gobject/Gtk/Gconf => mandatory
125
126 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) 
127 AC_SUBST(MODEST_GSTUFF_CFLAGS)
128 AC_SUBST(MODEST_GSTUFF_LIBS)
129
130 modest_save_cflags="$CFLAGS"
131 modest_save_libs="$LIBS"
132 PKG_CHECK_MODULES(MODEST_GTKHTML,libgtkhtml-${gtk_html_version})
133 AC_SUBST(MODEST_GTKHTML_CFLAGS)
134 AC_SUBST(MODEST_GTKHTML_LIBS)
135 CFLAGS="$MODEST_GTKHTML_CFLAGS"
136 LIBS="$MODEST_GTKHTML_LIBS"
137 AC_CHECK_DECLS([gtk_widget_tap_and_hold_setup],[],[], [#include <gtk/gtk.h>])
138 AC_CHECK_FUNCS(gtk_html_set_max_image_size)
139 AC_SUBST(HAVE_GTK_HTML_SET_MAX_IMAGE_SIZE)
140 AC_CHECK_FUNCS(gtk_html_get_selection_area)
141 AC_SUBST(HAVE_GTK_HTML_GET_SELECTION_AREA)
142 AC_CHECK_FUNCS(gtk_html_set_allow_dnd)
143 AC_SUBST(HAVE_GTK_HTML_SET_ALLOW_DND)
144 AC_CHECK_FUNCS(gtk_html_set_default_engine)
145 AC_SUBST(HAVE_GTK_HTML_SET_DEFAULT_ENGINE)
146 AC_CHECK_FUNCS(gtk_html_set_word_char_wrapping)
147 AC_SUBST(HAVE_GTK_HTML_SET_WORD_CHAR_WRAPPING)
148 AC_CHECK_FUNCS(gtk_tree_view_column_get_cell_data_hint)
149 AC_SUBST(HAVE_GTK_TREE_VIEW_COLUMN_GET_CELL_DATA_HINT)
150 CFLAGS="$modest_save_cflags"
151 LIBS="$modest_save_libs"
152
153 dnl --------------- PLATFORM -----------
154 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome])
155
156 AC_ARG_WITH(platform, [
157 Target platform:
158   --with-platform=detect  detect target platform (default)
159   --with-platform=gnome   build for Gnome
160   --with-platform=maemo   build for Maemo
161 ],
162 [case "${with_platform}" in
163        gnome|maemo|detect)    MODEST_PLATFORM=${with_platform};;
164        *)        AC_MSG_ERROR([Unknown platform selected]);;
165 esac], [MODEST_PLATFORM=detect])
166
167 if test "$MODEST_PLATFORM" = "detect"; then
168         MODEST_PLATFORM="$detected_platform"
169         with_platform=$detected_platform
170 fi
171
172 if test "$with_platform" = "maemo"; then
173         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_MAEMO -DMODEST_API_VERSION=${MODEST_API_VERSION}"
174         PKG_CHECK_MODULES(LIBMODEST_DBUS_CLIENT,libmodest-dbus-client-1.0)
175 elif test "$with_platform" = "gnome"; then
176         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME -DMODEST_API_VERSION=${MODEST_API_VERSION}"
177 fi
178 AC_SUBST(MODEST_PLUGIN_DEFINES)
179
180 dnl ---------- PLATFORM: *DBUS API* -----------
181 if test "x$with_platform" == "xgnome"; then
182    PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 glib-2.0 >= 2.8 libnotify)
183    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
184 else
185    have_dbusapi=true
186    PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 )
187    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
188 fi
189 AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue")
190 AC_SUBST(MODEST_PLATFORM)
191
192
193 dnl --------------- TOOLKIT SELECTION -----------
194 AC_ARG_WITH(toolkit, [
195 Target toolkit:
196   --with-toolkit=detect  detect target toolkit (default)
197   --with-toolkit=gtk   build for Gnome
198   --with-toolkit=hildon2   build for Hildon 2.x
199 ],
200 [case "${with_toolkit}" in
201        gtk|hildon2|detect)    MODEST_TOOLKIT=${with_toolkit};;
202        *)        AC_MSG_ERROR([Unknown toolkit selected]);;
203 esac], [MODEST_TOOLKIT=detect])
204
205 have_hildon2=false
206 have_gtk=false
207
208 if test "$MODEST_TOOLKIT" = "detect"; then
209    PKG_CHECK_EXISTS(hildon-1 >= 2.1.0 hildon-fm-2, have_hildon2=true, have_hildon2=false)
210    PKG_CHECK_EXISTS(glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify gtksourceview-2.0, have_gtk=true, have_gtk=false)
211    if test "x$have_hildon2" = "xtrue"; then
212       detected_toolkit=hildon2
213       hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
214       echo "DETECTED HILDON 2 $have_hildon2 (API is $hildon_api)."
215    elif test "x$have_gtk" == "xtrue"; then
216       detected_toolkit=gtk
217       echo "DETECTED GTK."
218    fi
219    MODEST_TOOLKIT="$detected_toolkit"
220    with_toolkit=$detected_toolkit
221 fi
222
223 dnl -------- TOOLKIT SELECTION: *HILDON API* -----------
224 if test "x$with_toolkit" == "xhildon2"; then
225    hildonpkgs="hildon-1 hildon-fm-2"
226    hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
227    AC_DEFINE_UNQUOTED(MODEST_HILDON_API, $hildon_api, ["the API version of hildon"])
228    MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_HILDON_API=$hildon_api"
229    MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON2"
230 elif test "x$with_toolkit" == "xgtk"; then
231      MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GTK"
232 fi
233
234 dnl -------- TOOLKIT SELECTION: *TOOLKIT DIR* -----------
235 if test "x$with_toolkit" == "xgtk"; then
236    PKG_CHECK_MODULES(MODEST_TOOLKIT,glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
237    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_GTK, 1, ["Whether modest is being build for the gtk toolkit."])
238    MODEST_TOOLKIT_DIR=gtk
239 elif test "$with_toolkit" = "hildon2"; then
240    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON2, 1, ["Whether modest is being build for the hildon2 toolkit."])
241    MODEST_TOOLKIT_DIR=hildon2
242 fi
243 AC_SUBST(MODEST_TOOLKIT)
244 AC_SUBST(MODEST_TOOLKIT_DIR)
245
246
247 dnl --------------- HILDON & PLUGIN PKGS -----------
248 pluginpkgs=$hildonpkgs
249 dnl echo "Plugin Packages $pluginpkgs"
250 AC_SUBST(pluginpkgs)
251
252 use_profile_data=false
253 # Plugin packages must not include libcanberra and libprofile
254 if test "x$with_platform" == "xmaemo"; then
255    hildonpkgs="$hildonpkgs libcanberra"
256    AC_CHECK_HEADER([profiled/keys_nokia.h], use_profile_data=true, use_profile_data=false)
257    if test "$use_profile_data" = "true"; then
258       hildonpkgs="$hildonpkgs profile"
259       AC_DEFINE_UNQUOTED(MODEST_USE_PROFILE, 1, ["Use the Profile data include"])
260 dnl      echo "HILDON 2 PACKAGES $hildonpkgs"
261    fi
262 fi
263 AC_SUBST(hildonpkgs)
264 PKG_CHECK_MODULES(MODEST_TOOLKIT,$hildonpkgs)
265
266 dnl -------------------- MAEMO LAUNCHER STUFF ------------
267 AC_ARG_ENABLE([maemo-launcher],
268               [AS_HELP_STRING([--enable-maemo-launcher],
269                               [build with maemo-launcher support])],
270                               [case "${enableval}" in
271                                yes) maemo_launcher=true ;;
272                                no)  maemo_launcher=false ;;
273                                *) AC_MSG_ERROR([bad value ${enableval} for --enable-maemo-launcher]) ;;
274                                esac], [maemo_launcher=false])
275 if test x$maemo_launcher = xtrue
276 then
277         PKG_CHECK_MODULES(MAEMO_LAUNCHER, [maemo-launcher-app])
278         AC_SUBST(MAEMO_LAUNCHER_CFLAGS)
279         AC_SUBST(MAEMO_LAUNCHER_LIBS)
280         MAEMO_LAUNCHER_MODEST_LDFLAGS="-shared "
281 else
282         MAEMO_LAUNCHER_MODEST_LDFLAGS="-export-dynamic "
283 fi
284 AC_SUBST(MAEMO_LAUNCHER_MODEST_LDFLAGS)
285
286 dnl --------------- EDITOR -----------
287 if test "x$with_toolkit" != "xgtk"; then
288    PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
289    if test "x$have_wpeditor" == "xfalse"; then
290       PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)
291       if test "x$have_libwpeditorplus" == "xtrue"; then
292         wpeditor="libwpeditor-plus"
293         AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])
294       else
295         AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
296       fi
297    else
298         wpeditor="wpeditor"
299         AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])
300    fi
301 else
302    PKG_CHECK_EXISTS(gtksourceview-2.0, []. [])
303 fi
304
305 dnl --------------- LIBALARM -----------
306 if test "x$with_platform" == "xmaemo"; then
307    PKG_CHECK_MODULES(MODEST_LIBALARM, alarm, have_libalarm=true,have_libalarm=false)
308    if test "x$have_libalarm" == "xtrue"; then
309       AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."])
310       AC_SUBST(MODEST_LIBALARM_CFLAGS)
311       AC_SUBST(MODEST_LIBALARM_LIBS)
312    fi
313 fi
314
315 dnl --------------- MCE -----------
316 if test "x$with_platform" == "xmaemo"; then
317 PKG_CHECK_MODULES(MODEST_MCE,mce,have_mce=true,have_mce=false)
318 if test "x$have_mce" == "xtrue"; then
319    mce="mce"
320    AC_DEFINE_UNQUOTED(MODEST_HAVE_MCE, 1, ["Whether mce is used."])
321    AC_SUBST(MODEST_MCE_CFLAGS)
322    AC_SUBST(MODEST_MCE_LIBS)
323 else
324    mce=""
325 fi
326 fi
327
328 dnl --------------- LIBCONIC -----------
329 dnl check for libconic; this is a trick to check whether we run on a
330 dnl 'real' maemo platform, or on, say, ubuntu embedded. This determines
331 dnl whether we build with the non-hildon GTK+
332
333 if test "x$with_platform" == "xmaemo"; then
334 PKG_CHECK_MODULES(MODEST_LIBCONIC,conic,have_libconic=true,have_libconic=false)
335 if test "x$have_libconic" == "xtrue"; then
336    AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_GTK,1,["Whether modest is being built with Hildon/Gtk"])
337    AC_DEFINE_UNQUOTED(MODEST_HAVE_CONIC,1,["Whether modest has conic available"])
338    AC_SUBST(MODEST_LIBCONIC_CLAGS)
339    AC_SUBST(MODEST_LIBCONIC_LIBS)
340 else
341 # if we define this, tinymail will not try to #include conic headers
342    CFLAGS="$CFLAGS -DLIBTINYMAIL_MAEMO_WITHOUT_CONIC"
343 fi
344 fi
345
346 dnl --------------- NOTIFICATION STUFF -----------
347 if test "x$with_toolkit" != "xgtk"; then
348    PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false)
349    if test "x$have_hildon_notify" == "xtrue"; then
350       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"])
351    fi
352 fi
353
354 dnl --------------- URI/MIME STUFF -----------
355 if test "x$with_toolkit" != "xgtk"; then
356    PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false)
357    if test "x$have_hildonmime" == "xtrue"; then
358      mimelib="hildon-mime"
359      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])
360    fi
361 fi
362
363 dnl --------------- ADDRESSBOOK --------------
364 if test "x$with_platform" == "xmaemo"; then
365    PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false)
366
367    if test "x$have_abook" == "xtrue"; then
368
369      abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1`
370      AC_SUBST(MODEST_ABOOK_CFLAGS)
371      AC_SUBST(MODEST_ABOOK_LIBS)
372
373      modest_save_cflags="$CFLAGS"
374      modest_save_libs="$LIBS"
375      CFLAGS="$MODEST_ABOOK_CFLAGS"
376      LIBS="$MODEST_ABOOK_LIBS"
377      AC_CHECK_FUNCS(osso_abook_contact_chooser_set_visible_func)
378      AC_SUBST(HAVE_OSSO_ABOOK_CONTACT_CHOOSER_SET_VISIBLE_FUNC)
379      CFLAGS="$modest_save_cflags"
380      LIBS="$modest_save_libs"
381
382      AC_DEFINE_UNQUOTED(OSSO_ABOOK_ENABLE_DEPRECATED, 1, ["use deprecated addressbook API"])
383      AC_DEFINE_UNQUOTED(MODEST_ABOOK_API, $abook_api, ["the API version of osso-addressbook"])
384      AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK, 1, ["whether we have osso-addressbook"])
385    fi
386 fi
387
388 AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue")
389
390 dnl --------------- LIBTIME --------------
391 AC_CHECK_HEADERS([clockd/libtime.h], have_libtime=true, have_libtime=false)
392
393 if test "x$have_libtime" == "xtrue"; then
394    AC_DEFINE_UNQUOTED(MODEST_USE_LIBTIME, 1, ["use libtime API"])
395    MODEST_LIBTIME_LIBS=-ltime
396 else
397    MODEST_LIBTIME_LIBS=
398 fi
399 AC_SUBST(MODEST_LIBTIME_LIBS)
400
401 dnl --------------- IPHB --------------
402 AC_CHECK_HEADERS([iphbd/libiphb.h], have_libiphb=true, have_libiphb=false)
403
404 if test "x$have_libiphb" == "xtrue"; then
405    AC_DEFINE_UNQUOTED(MODEST_USE_IPHB, 1, ["use IP Heartbeat API"])
406    MODEST_LIBIPHB_LIBS=-liphb
407 else
408    MODEST_LIBIPHB_LIBS=
409 fi
410 AC_SUBST(MODEST_LIBIPHB_LIBS)
411
412
413 dnl --------------- GETTEXT --------------
414 AM_GLIB_GNU_GETTEXT
415 IT_PROG_INTLTOOL([0.35.0])
416
417 GETTEXT_PACKAGE=modest
418 AC_SUBST(GETTEXT_PACKAGE)
419 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
420
421
422 dnl --------------- SETTINGS FOR MAEMO --------------
423 if test "x$with_platform" == "xmaemo"; then
424
425   # warnings are errors, but don't check format errors, because
426   # it breaks with logical ids
427   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
428
429    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
430    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
431    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
432    backupsettingsdir=/etc/osso-backup/applications
433    prebackupdir=/etc/osso-backup/pre-backup.d/
434    restoredir=/etc/osso-backup/restore.d/always/
435    ossocudscriptsdir=/etc/osso-cud-scripts
436    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
437    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
438    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
439    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
440    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
441    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
442    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
443    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
444
445    dbus_api="dbus_api"
446    AC_SUBST(dbus_api)
447
448    # Define as variables in Makefiles
449    AC_SUBST(desktopentrydir)
450    AC_SUBST(serviceentrydir)
451    AC_SUBST(backupsettingsdir)
452    AC_SUBST(prebackupdir)
453    AC_SUBST(restoredir)
454    AC_SUBST(ossocudscriptsdir)
455    AC_SUBST(localedir)
456    AC_SUBST(pixmapdir)
457    AC_SUBST(icon_26x26dir)
458    AC_SUBST(icon_34x34dir)
459    AC_SUBST(icon_40x40dir)
460    AC_SUBST(icon_50x50dir)
461    AC_SUBST(icon_scalabledir)
462    AC_SUBST(pluginlibdir)
463    AC_SUBST(plugindesktopentrydir)
464
465 fi
466
467 dnl --------------- TESTING -------------------
468 build_tests=false
469 AC_ARG_ENABLE(tests,
470 AC_HELP_STRING([--enable-tests],
471         [Build tests (no, yes)]),
472 [case "${enableval}" in
473       yes)
474         build_tests=true ;;
475       *) build_tests=false ;;
476 esac],[build_tests=false])
477 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
478
479 if test x$build_tests = xtrue; then
480    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
481 fi
482
483 dnl ------------ TESTING: GTK-DOC ----------
484 build_docs=false
485 AC_ARG_ENABLE(docs,
486 AC_HELP_STRING([--enable-docs],
487         [Build documentation (yes, no)]),
488 [case "${enableval}" in
489       yes)
490         build_docs=true ;;
491       *) build_docs=false ;;
492 esac],[build_docs=false])
493 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
494
495 GTK_DOC_CHECK([1.0])
496
497 dnl ---------------- OUTPUT --------------
498 AC_OUTPUT([
499 po/Makefile.in
500 Makefile
501 man/Makefile
502 src/Makefile
503 src/modest-plugin-1.0.pc
504 src/dbus_api/Makefile
505 src/gtk/Makefile
506 src/hildon2/Makefile
507 src/widgets/Makefile
508 docs/Makefile
509 docs/reference/Makefile
510 tests/Makefile
511 tests/dbus_api/Makefile
512 src/hildon2/modest.desktop
513 src/hildon2/com.nokia.modest.service
514 ])
515
516
517 echo
518 echo "modest configure results"
519 echo "-----------------------------------"
520 echo "Platform         : $with_platform"
521 echo "Toolkit          : $with_toolkit"
522 echo "Prefix           : ${prefix}"
523 echo "Build tests      : $build_tests"
524 echo "Build docs       : $build_docs"
525 echo "Gettext Package  : $GETTEXT_PACKAGE"
526
527 if test "x$with_platform" == "xmaemo"; then
528    echo "Maemo Launcher   : $maemo_launcher"
529    echo "Editor lib       : $wpeditor"
530    echo "Addressbook      : $have_abook"
531    echo "libconic support : $have_libconic"
532    echo "Alarm            : $have_libalarm"
533    echo "MCE              : $have_mce"
534    echo "Hildon-Notify    : $have_hildon_notify"
535 fi
536
537 if [ $gtk_html_found = "true" ]; then
538    echo "GtkHTML version  : $gtk_html_version"
539 fi
540 echo "Libtime          : $have_libtime"
541
542 echo "CFLAGS           : $CFLAGS"
543 echo "Debug version    : $with_debug"
544 echo ""
545 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
546 echo ""