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