By default scrollables don't show shadow
[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 dnl # GLib/Gobject/Gtk/Gconf => mandatory
129
130 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) 
131 AC_SUBST(MODEST_GSTUFF_CFLAGS)
132 AC_SUBST(MODEST_GSTUFF_LIBS)
133
134 modest_save_cflags="$CFLAGS"
135 modest_save_libs="$LIBS"
136 PKG_CHECK_MODULES(MODEST_GTKHTML,libgtkhtml-${gtk_html_version})
137 AC_SUBST(MODEST_GTKHTML_CFLAGS)
138 AC_SUBST(MODEST_GTKHTML_LIBS)
139 CFLAGS="$MODEST_GTKHTML_CFLAGS"
140 LIBS="$MODEST_GTKHTML_LIBS"
141 AC_CHECK_DECLS([gtk_widget_tap_and_hold_setup],[],[], [#include <gtk/gtk.h>])
142 AC_CHECK_FUNCS(gtk_html_set_max_image_size)
143 AC_SUBST(HAVE_GTK_HTML_SET_MAX_IMAGE_SIZE)
144 AC_CHECK_FUNCS(gtk_html_get_selection_area)
145 AC_SUBST(HAVE_GTK_HTML_GET_SELECTION_AREA)
146 AC_CHECK_FUNCS(gtk_html_set_allow_dnd)
147 AC_SUBST(HAVE_GTK_HTML_SET_ALLOW_DND)
148 AC_CHECK_FUNCS(gtk_html_set_default_engine)
149 AC_SUBST(HAVE_GTK_HTML_SET_DEFAULT_ENGINE)
150 AC_CHECK_FUNCS(gtk_html_set_word_char_wrapping)
151 AC_SUBST(HAVE_GTK_HTML_SET_WORD_CHAR_WRAPPING)
152 AC_CHECK_FUNCS(gtk_tree_view_column_get_cell_data_hint)
153 AC_SUBST(HAVE_GTK_TREE_VIEW_COLUMN_GET_CELL_DATA_HINT)
154 CFLAGS="$modest_save_cflags"
155 LIBS="$modest_save_libs"
156
157 dnl --------------- PLATFORM -----------
158 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome])
159
160 AC_ARG_WITH(platform, [
161 Target platform:
162   --with-platform=detect  detect target platform (default)
163   --with-platform=gnome   build for Gnome
164   --with-platform=maemo   build for Maemo
165 ],
166 [case "${with_platform}" in
167        gnome|maemo|detect)    MODEST_PLATFORM=${with_platform};;
168        *)        AC_MSG_ERROR([Unknown platform selected]);;
169 esac], [MODEST_PLATFORM=detect])
170
171 if test "$MODEST_PLATFORM" = "detect"; then
172         MODEST_PLATFORM="$detected_platform"
173         with_platform=$detected_platform
174 fi
175
176 if test "$with_platform" = "maemo"; then
177         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_MAEMO -DMODEST_API_VERSION=${MODEST_API_VERSION}"
178         PKG_CHECK_MODULES(LIBMODEST_DBUS_CLIENT,libmodest-dbus-client-1.0 >= 3.2.0)
179 elif test "$with_platform" = "gnome"; then
180         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME -DMODEST_API_VERSION=${MODEST_API_VERSION}"
181 fi
182 AC_SUBST(MODEST_PLUGIN_DEFINES)
183
184 dnl ---------- PLATFORM: *DBUS API* -----------
185 if test "x$with_platform" == "xgnome"; then
186    PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 glib-2.0 >= 2.8 libnotify)
187    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
188 else
189    have_dbusapi=true
190    PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 )
191    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
192 fi
193 AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue")
194 AC_SUBST(MODEST_PLATFORM)
195
196
197 dnl --------------- TOOLKIT SELECTION -----------
198 AC_ARG_WITH(toolkit, [
199 Target toolkit:
200   --with-toolkit=detect  detect target toolkit (default)
201   --with-toolkit=gtk   build for Gnome
202   --with-toolkit=hildon2   build for Hildon 2.x
203 ],
204 [case "${with_toolkit}" in
205        gtk|hildon2|detect)    MODEST_TOOLKIT=${with_toolkit};;
206        *)        AC_MSG_ERROR([Unknown toolkit selected]);;
207 esac], [MODEST_TOOLKIT=detect])
208
209 have_hildon2=false
210 have_gtk=false
211
212 if test "$MODEST_TOOLKIT" = "detect"; then
213    PKG_CHECK_EXISTS(hildon-1 >= 2.1.0 hildon-fm-2, have_hildon2=true, have_hildon2=false)
214    PKG_CHECK_EXISTS(glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify, have_gtk=true, have_gtk=false)
215    if test "x$have_hildon2" = "xtrue"; then
216       detected_toolkit=hildon2
217       hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
218       echo "DETECTED HILDON 2 $have_hildon2 (API is $hildon_api)."
219    elif test "x$have_gtk" == "xtrue"; then
220       detected_toolkit=gtk
221       echo "DETECTED GTK."
222    fi
223    MODEST_TOOLKIT="$detected_toolkit"
224    with_toolkit=$detected_toolkit
225 fi
226
227 dnl -------- TOOLKIT SELECTION: *HILDON API* -----------
228 if test "x$with_toolkit" == "xhildon2"; then
229    hildonpkgs="hildon-1 hildon-fm-2"
230    hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
231    AC_DEFINE_UNQUOTED(MODEST_HILDON_API, $hildon_api, ["the API version of hildon"])
232    MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_HILDON_API=$hildon_api"
233    MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON2"
234 elif test "x$with_toolkit" == "xgtk"; then
235      MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GTK"
236 fi
237
238 dnl -------- TOOLKIT SELECTION: *TOOLKIT DIR* -----------
239 if test "x$with_toolkit" == "xgtk"; then
240    PKG_CHECK_MODULES(MODEST_TOOLKIT,glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
241    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_GTK, 1, ["Whether modest is being build for the gtk toolkit."])
242    MODEST_TOOLKIT_DIR=gtk
243 elif test "$with_toolkit" = "hildon2"; then
244    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON2, 1, ["Whether modest is being build for the hildon2 toolkit."])
245    MODEST_TOOLKIT_DIR=hildon2
246 fi
247 AC_SUBST(MODEST_TOOLKIT)
248 AC_SUBST(MODEST_TOOLKIT_DIR)
249
250
251 dnl --------------- HILDON & PLUGIN PKGS -----------
252 pluginpkgs=$hildonpkgs
253 dnl echo "Plugin Packages $pluginpkgs"
254 AC_SUBST(pluginpkgs)
255
256 use_profile_data=false
257 # Plugin packages must not include libcanberra and libprofile
258 if test "x$with_platform" == "xmaemo"; then
259    hildonpkgs="$hildonpkgs libcanberra"
260    AC_CHECK_HEADER([profiled/keys_nokia.h], use_profile_data=true, use_profile_data=false)
261    if test "$use_profile_data" = "true"; then
262       hildonpkgs="$hildonpkgs profile"
263       AC_DEFINE_UNQUOTED(MODEST_USE_PROFILE, 1, ["Use the Profile data include"])
264 dnl      echo "HILDON 2 PACKAGES $hildonpkgs"
265    fi
266 fi
267 AC_SUBST(hildonpkgs)
268 PKG_CHECK_MODULES(MODEST_TOOLKIT,$hildonpkgs)
269
270 dnl -------------------- MAEMO LAUNCHER STUFF ------------
271 AC_ARG_ENABLE([maemo-launcher],
272               [AS_HELP_STRING([--enable-maemo-launcher],
273                               [build with maemo-launcher support])],
274                               [case "${enableval}" in
275                                yes) maemo_launcher=true ;;
276                                no)  maemo_launcher=false ;;
277                                *) AC_MSG_ERROR([bad value ${enableval} for --enable-maemo-launcher]) ;;
278                                esac], [maemo_launcher=false])
279 if test x$maemo_launcher = xtrue
280 then
281         PKG_CHECK_MODULES(MAEMO_LAUNCHER, [maemo-launcher-app])
282         AC_SUBST(MAEMO_LAUNCHER_CFLAGS)
283         AC_SUBST(MAEMO_LAUNCHER_LIBS)
284         MAEMO_LAUNCHER_MODEST_LDFLAGS="-shared "
285 else
286         MAEMO_LAUNCHER_MODEST_LDFLAGS="-export-dynamic "
287 fi
288 AC_SUBST(MAEMO_LAUNCHER_MODEST_LDFLAGS)
289
290 dnl --------------- EDITOR -----------
291 PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
292 if test "x$have_wpeditor" == "xfalse"; then
293    PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)
294    if test "x$have_libwpeditorplus" == "xtrue"; then
295       wpeditor="libwpeditor-plus"
296       AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])
297    else
298       AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
299    fi
300 else
301    wpeditor="wpeditor"
302    AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])
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 if test "x$with_toolkit" != "xgtk"; then
347 MODEST_TOOLKIT_CFLAGS="$MODEST_TOOLKIT_CFLAGS -DMAEMO_CHANGES"
348 fi
349
350 dnl --------------- NOTIFICATION STUFF -----------
351 if test "x$with_toolkit" != "xgtk"; then
352    PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false)
353    if test "x$have_hildon_notify" == "xtrue"; then
354       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"])
355    fi
356 fi
357
358 dnl --------------- URI/MIME STUFF -----------
359 if test "x$with_toolkit" != "xgtk"; then
360    PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false)
361    if test "x$have_hildonmime" == "xtrue"; then
362      mimelib="hildon-mime"
363      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])
364    fi
365 fi
366
367 dnl --------------- ADDRESSBOOK --------------
368 if test "x$with_platform" == "xmaemo"; then
369    PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false)
370
371    if test "x$have_abook" == "xtrue"; then
372
373      abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1`
374      AC_SUBST(MODEST_ABOOK_CFLAGS)
375      AC_SUBST(MODEST_ABOOK_LIBS)
376
377      modest_save_cflags="$CFLAGS"
378      modest_save_libs="$LIBS"
379      CFLAGS="$MODEST_ABOOK_CFLAGS"
380      LIBS="$MODEST_ABOOK_LIBS"
381      AC_CHECK_FUNCS(osso_abook_contact_chooser_set_visible_func)
382      AC_SUBST(HAVE_OSSO_ABOOK_CONTACT_CHOOSER_SET_VISIBLE_FUNC)
383      CFLAGS="$modest_save_cflags"
384      LIBS="$modest_save_libs"
385
386      AC_DEFINE_UNQUOTED(OSSO_ABOOK_ENABLE_DEPRECATED, 1, ["use deprecated addressbook API"])
387      AC_DEFINE_UNQUOTED(MODEST_ABOOK_API, $abook_api, ["the API version of osso-addressbook"])
388      AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK, 1, ["whether we have osso-addressbook"])
389    fi
390
391    # Check the presence of the calendar widgets
392    PKG_CHECK_MODULES(MODEST_CALENDAR_WIDGETS,calendar-ui-widgets,have_calendar_widgets=true,have_calendar_widgets=false)
393    AC_SUBST(MODEST_CALENDAR_WIDGETS_CFLAGS)
394    AC_SUBST(MODEST_CALENDAR_WIDGETS_LIBS)
395    if test "x$have_calendar_widgets" == "xtrue"; then
396       AC_DEFINE_UNQUOTED(MODEST_USE_CALENDAR_WIDGETS, 1, ["Use the Calendar color widgets"])
397    fi
398 fi
399
400 AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue")
401
402 dnl --------------- LIBTIME --------------
403 AC_CHECK_HEADERS([clockd/libtime.h], have_libtime=true, have_libtime=false)
404
405 if test "x$have_libtime" == "xtrue"; then
406    AC_DEFINE_UNQUOTED(MODEST_USE_LIBTIME, 1, ["use libtime API"])
407    MODEST_LIBTIME_LIBS=-ltime
408 else
409    MODEST_LIBTIME_LIBS=
410 fi
411 AC_SUBST(MODEST_LIBTIME_LIBS)
412
413 dnl --------------- IPHB --------------
414 AC_CHECK_HEADERS([iphbd/libiphb.h], have_libiphb=true, have_libiphb=false)
415
416 if test "x$have_libiphb" == "xtrue"; then
417    AC_DEFINE_UNQUOTED(MODEST_USE_IPHB, 1, ["use IP Heartbeat API"])
418    MODEST_LIBIPHB_LIBS=-liphb
419 else
420    MODEST_LIBIPHB_LIBS=
421 fi
422 AC_SUBST(MODEST_LIBIPHB_LIBS)
423
424
425 dnl --------------- GETTEXT --------------
426 AM_GLIB_GNU_GETTEXT
427 IT_PROG_INTLTOOL([0.35.0])
428
429 GETTEXT_PACKAGE=modest
430 AC_SUBST(GETTEXT_PACKAGE)
431 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
432
433
434 dnl --------------- SETTINGS FOR MAEMO --------------
435 if test "x$with_platform" == "xmaemo"; then
436
437   # warnings are errors, but don't check format errors, because
438   # it breaks with logical ids
439   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
440
441    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
442    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
443    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
444    backupsettingsdir=/etc/osso-backup/applications
445    prebackupdir=/etc/osso-backup/pre-backup.d/
446    restoredir=/etc/osso-backup/restore.d/always/
447    ossocudscriptsdir=/etc/osso-cud-scripts
448    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
449    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
450    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
451    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
452    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
453    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
454    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
455    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
456
457    dbus_api="dbus_api"
458    AC_SUBST(dbus_api)
459
460    # Define as variables in Makefiles
461    AC_SUBST(desktopentrydir)
462    AC_SUBST(serviceentrydir)
463    AC_SUBST(backupsettingsdir)
464    AC_SUBST(prebackupdir)
465    AC_SUBST(restoredir)
466    AC_SUBST(ossocudscriptsdir)
467    AC_SUBST(localedir)
468    AC_SUBST(pixmapdir)
469    AC_SUBST(icon_26x26dir)
470    AC_SUBST(icon_34x34dir)
471    AC_SUBST(icon_40x40dir)
472    AC_SUBST(icon_50x50dir)
473    AC_SUBST(icon_scalabledir)
474    AC_SUBST(pluginlibdir)
475    AC_SUBST(plugindesktopentrydir)
476
477 fi
478
479 dnl --------------- TESTING -------------------
480 build_tests=false
481 AC_ARG_ENABLE(tests,
482 AC_HELP_STRING([--enable-tests],
483         [Build tests (no, yes)]),
484 [case "${enableval}" in
485       yes)
486         build_tests=true ;;
487       *) build_tests=false ;;
488 esac],[build_tests=false])
489 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
490
491 if test x$build_tests = xtrue; then
492    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
493 fi
494
495 dnl ------------ TESTING: GTK-DOC ----------
496 build_docs=false
497 AC_ARG_ENABLE(docs,
498 AC_HELP_STRING([--enable-docs],
499         [Build documentation (yes, no)]),
500 [case "${enableval}" in
501       yes)
502         build_docs=true ;;
503       *) build_docs=false ;;
504 esac],[build_docs=false])
505 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
506
507 GTK_DOC_CHECK([1.0])
508
509 dnl ---------------- OUTPUT --------------
510 AC_OUTPUT([
511 po/Makefile.in
512 Makefile
513 man/Makefile
514 src/Makefile
515 src/modest-plugin-1.0.pc
516 src/dbus_api/Makefile
517 src/gtk/Makefile
518 src/hildon2/Makefile
519 src/widgets/Makefile
520 docs/Makefile
521 docs/reference/Makefile
522 tests/Makefile
523 tests/dbus_api/Makefile
524 src/hildon2/modest.desktop
525 src/hildon2/com.nokia.modest.service
526 ])
527
528
529 echo
530 echo "modest configure results"
531 echo "-----------------------------------"
532 echo "Platform         : $with_platform"
533 echo "Toolkit          : $with_toolkit"
534 echo "Prefix           : ${prefix}"
535 echo "Build tests      : $build_tests"
536 echo "Build docs       : $build_docs"
537 echo "Gettext Package  : $GETTEXT_PACKAGE"
538
539 if test "x$with_platform" == "xmaemo"; then
540    echo "Maemo Launcher   : $maemo_launcher"
541    echo "Editor lib       : $wpeditor"
542    echo "Addressbook      : $have_abook"
543    echo "libconic support : $have_libconic"
544    echo "Alarm            : $have_libalarm"
545    echo "MCE              : $have_mce"
546    echo "Hildon-Notify    : $have_hildon_notify"
547    echo "Calendar widgets : $have_calendar_widgets"
548 fi
549
550 if [ $gtk_html_found = "true" ]; then
551    echo "GtkHTML version  : $gtk_html_version"
552 fi
553 echo "Libtime          : $have_libtime"
554
555 echo "CFLAGS           : $CFLAGS"
556 echo "Debug version    : $with_debug"
557 echo ""
558 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
559 echo ""