Changed version number and release modest 3.90.0 as a start of the
[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
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
154 dnl dnl now, determine what to build
155 dnl AC_MSG_NOTICE([Determining what platform to build])
156 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome])
157
158 AC_ARG_WITH(platform, [
159 Target platform:
160   --with-platform=detect  detect target platform (default)
161   --with-platform=gnome   build for Gnome
162   --with-platform=maemo   build for Maemo
163 ],
164 [case "${with_platform}" in
165        gnome|maemo|detect)    MODEST_PLATFORM=${with_platform};;
166        *)        AC_MSG_ERROR([Unknown platform selected]);;
167 esac], [MODEST_PLATFORM=detect])
168
169 if test "$MODEST_PLATFORM" = "detect"; then
170         MODEST_PLATFORM="$detected_platform"
171         with_platform=$detected_platform
172 fi
173
174 if test "$with_platform" = "maemo"; then
175         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_MAEMO -DMODEST_API_VERSION=${MODEST_API_VERSION}"
176         PKG_CHECK_MODULES(LIBMODEST_DBUS_CLIENT,libmodest-dbus-client-1.0)
177 elif test "$with_platform" = "gnome"; then
178         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME -DMODEST_API_VERSION=${MODEST_API_VERSION}"
179 fi
180 AC_SUBST(MODEST_PLUGIN_DEFINES)
181
182 #
183 # check the widgets library
184 #
185 have_hildon2=false
186 have_hildon1=false
187 have_hildon0=false
188 have_gtk=false
189 PKG_CHECK_EXISTS(hildon-1, have_hildon1=true,have_hildon1=false)
190 if test "$have_hildon1" = "true"; then
191    PKG_CHECK_EXISTS(hildon-1 >= 2.1.0 hildon-fm-2, have_hildon2=true, have_hildon2=false)
192    PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS,hildon-1 hildon-fm-2)
193    hildonpkgs="hildon-1 hildon-fm-2"
194    detected_toolkit=hildon1
195    echo "DETECTED HILDON 1 $have_hildon2."
196 else
197    hildonpkgs="hildon-libs hildon-fm"
198    detected_toolkit=hildon1
199    PKG_CHECK_EXISTS(hildon-libs >= 0.12.0, have_hildon1=true, have_hildon1=false)
200    if test "$have_hildon1" = "false"; then
201       PKG_CHECK_EXISTS(hildon-libs, have_hildon0=true, have_hildon0=false)
202       if test "$have_hildon0" = "false"; then
203          have_gtk=true
204          detected_toolkit=gtk
205          hildonpkgs=
206       fi
207    fi
208    if test "$have_gtk" = "false"; then
209       PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS,hildon-libs hildon-fm)
210    fi
211 fi
212
213 dnl --------------- HILDON & PLUGIN PKGS -----------
214 pluginpkgs=$hildonpkgs
215 echo "Plugin Packages $pluginpkgs"
216 AC_SUBST(pluginpkgs)
217
218 use_profile_data=false
219 # Plugin packages must not include libcanberra and libprofile
220 if test "$have_hildon2" = "true"; then
221    echo "DETECTED HILDON 2 $have_hildon2."
222    detected_toolkit=hildon2
223    hildonpkgs="$hildonpkgs libcanberra"
224    AC_CHECK_HEADER([profiled/keys_nokia.h], use_profile_data=true, use_profile_data=false)
225    if test "$use_profile_data" = "true"; then
226       hildonpkgs="$hildonpkgs profile"
227       AC_DEFINE_UNQUOTED(MODEST_USE_PROFILE, 1, ["Use the Profile data include"])
228    fi
229    echo "HILDON 2 PACKAGES $hildonpkgs"
230 fi
231 AC_SUBST(hildonpkgs)
232
233 dnl --------------- HILDON API ------------
234 hildon_api=
235 if test "$have_hildon0" = "true"; then
236    hildon_api=0
237 elif test "$have_hildon1" = "true"; then
238    hildon_api=1
239 elif test "$have_gtk" = "false"; then
240    hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
241 fi
242
243 AC_DEFINE_UNQUOTED(MODEST_HILDON_API, $hildon_api, ["the API version of hildon"])
244 MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_HILDON_API=$hildon_api"
245
246 AC_ARG_WITH(toolkit, [
247 Target toolkit:
248   --with-toolkit=detect  detect target toolkit (default)
249   --with-toolkit=gtk   build for Gnome
250   --with-toolkit=hildon1   build for Hildon 1.x
251   --with-toolkit=hildon2   build for Hildon 2.x
252 ],
253 [case "${with_toolkit}" in
254        gtk|hildon1|hildon2|detect)    MODEST_TOOLKIT=${with_toolkit};;
255        *)        AC_MSG_ERROR([Unknown platform selected]);;
256 esac], [MODEST_TOOLKIT=detect])
257
258 if test "$MODEST_TOOLKIT" = "detect"; then
259         MODEST_TOOLKIT="$detected_toolkit"
260         with_toolkit=$detected_toolkit
261 fi
262
263 if test "$with_toolkit" = "hildon1"; then
264         MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON1"
265 elif test "$with_toolkit" = "hildon2"; then
266         MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON2"
267 elif test "$with_toolkit" = "gtk"; then
268         MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GNOME"
269 fi
270
271 dnl Whether to use maemo-launcher or not
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 have_easysetup=false
292 if test "x$with_toolkit" == "xgtk"; then
293    PKG_CHECK_MODULES(MODEST_TOOLKIT,glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify gtksourceview-2.0)
294    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_GTK, 1, ["Whether modest is being build for the gtk toolkit."])
295    MODEST_TOOLKIT_DIR=gnome
296 else
297    have_easysetup=true
298    PKG_CHECK_MODULES(MODEST_TOOLKIT,$hildonpkgs)
299    if test "$with_toolkit" = "hildon2"; then
300       AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON2, 1, ["Whether modest is being build for the hildon2 toolkit."])
301       MODEST_TOOLKIT_DIR=hildon2
302    else
303       AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON1, 1, ["Whether modest is being build for the hildon2 toolkit."])
304       MODEST_TOOLKIT_DIR=maemo
305    fi
306     AC_DEFINE_UNQUOTED(MODEST_HAVE_EASYSETUP, 1, ["Whether we have the easysetup feature"])
307 fi
308 AM_CONDITIONAL(MODEST_HAVE_EASYSETUP,test "x$have_easysetup" == "xtrue")
309 AC_SUBST(MODEST_TOOLKIT)
310 AC_SUBST(MODEST_TOOLKIT_DIR)
311
312 if test "x$with_platform" == "xgnome"; then
313       PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 glib-2.0 >= 2.8 libnotify)
314     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
315 dnl     AC_MSG_ERROR([The GNOME Build is currently broken; please try the Maemo build instead])
316 else
317     have_dbusapi=true
318     PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 )
319     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
320 fi
321 AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue")
322 AC_SUBST(MODEST_PLATFORM)
323
324
325
326 #
327 # check for wpeditor or libwpeditor-plus (on maemo)
328 #
329 if test "x$with_toolkit" != "xgtk"; then  
330 PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
331 if test "x$have_wpeditor" == "xfalse"; then
332    PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)     
333    if test "x$have_libwpeditorplus" == "xtrue"; then
334         wpeditor="libwpeditor-plus"
335         AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])              
336    else
337         AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
338    fi
339 else
340    wpeditor="wpeditor"  
341    AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])           
342 fi
343 fi
344
345
346 #
347 # check libalarm
348 #
349 if test "x$with_platform" == "xmaemo"; then  
350    PKG_CHECK_MODULES(MODEST_LIBALARM,libalarm,have_libalarm=true,have_libalarm=false)
351    if test "x$have_libalarm" == "xfalse"; then
352       PKG_CHECK_MODULES(MODEST_LIBALARM, alarm, have_libalarm=true,have_libalarm=false)
353    fi
354    if test "x$have_libalarm" == "xtrue"; then
355       AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."])                
356       AC_SUBST(MODEST_LIBALARM_CFLAGS)
357       AC_SUBST(MODEST_LIBALARM_LIBS)
358    fi
359 fi
360
361 #
362 # check for MCE
363 #
364 if test "x$with_platform" == "xmaemo"; then  
365 PKG_CHECK_MODULES(MODEST_MCE,mce,have_mce=true,have_mce=false)
366 if test "x$have_mce" == "xtrue"; then
367    mce="mce"    
368    AC_DEFINE_UNQUOTED(MODEST_HAVE_MCE, 1, ["Whether mce is used."])
369    AC_SUBST(MODEST_MCE_CFLAGS)
370    AC_SUBST(MODEST_MCE_LIBS)
371 else
372    mce=""
373 fi
374 fi
375
376 #
377 # check for libconic; this is a trick to check whether we run
378 # on a 'real' maemo platform, or on, say, ubuntu embedded
379 # this determines whether we build with the non-hildon GTK+
380 #
381 if test "x$with_platform" == "xmaemo"; then  
382 PKG_CHECK_MODULES(MODEST_LIBCONIC,conic,have_libconic=true,have_libconic=false)
383 if test "x$have_libconic" == "xtrue"; then
384    AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_GTK,1,["Whether modest is being built with Hildon/Gtk"])
385    AC_DEFINE_UNQUOTED(MODEST_HAVE_CONIC,1,["Whether modest has conic available"])
386    AC_SUBST(MODEST_LIBCONIC_CLAGS)
387    AC_SUBST(MODEST_LIBCONIC_LIBS)
388 else
389 # if we define this, tinymail will not try to #include conic headers
390    CFLAGS="$CFLAGS -DLIBTINYMAIL_MAEMO_WITHOUT_CONIC"
391 fi
392 fi
393
394 #
395 # check hildon-help (only for maemo AND NOT fremantle)
396 #
397 if test "x$with_toolkit" == "xhildon1"; then
398    PKG_CHECK_MODULES(MODEST_HILDON_HELP,hildon-help,have_hildon_help=true,have_hildon_help=false)
399    if test "x$have_hildon_help" == "xfalse"; then
400       PKG_CHECK_MODULES(MODEST_HILDON_HELP,libossohelp,have_osso_help=true,have_osso_help=false)        
401       if test "x$have_osso_help" == "xtrue"; then
402         helplib="osso-help"
403         AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_HELP, 1, ["Whether osso-help is used."])            
404       else
405         AC_MSG_ERROR([you need to have either osso-help or hildon-help installed])
406       fi
407    else
408      helplib="hildon-help"
409      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_HELP, 1, ["Whether hildon-help is used."])           
410    fi
411 fi
412
413
414
415 #
416 # check for the notification stuff (only maemo)
417 #
418 if test "x$with_toolkit" != "xgtk"; then  
419    PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false)
420    if test "x$have_hildon_notify" == "xtrue"; then
421       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"])      
422    fi
423 fi
424
425
426 #
427 # check for the uri/mime stuff
428 #
429 if test "x$with_toolkit" != "xgtk"; then  
430    PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false)
431    if test "x$have_hildonmime" == "xfalse"; then
432       PKG_CHECK_MODULES(MODEST_HILDON_MIME,libossomime,have_ossomime=true,have_ossomime=false)  
433       if test "x$have_ossomime" == "xtrue"; then
434         mimelib="osso-mime"
435         AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_MIME, 1, ["Whether osso-mime is used."])            
436       else
437         AC_MSG_ERROR([you need to have either osso-mime or hildon-mime installed])
438       fi
439    else
440      mimelib="hildon-mime"      
441      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])           
442    fi
443 fi
444
445 PKG_CHECK_MODULES(MODEST_MOZEMBED, libtinymailui-mozembed-1.0, have_mozembed=true, have_mozembed=false)
446 AC_ARG_ENABLE(mozembed,
447 AC_HELP_STRING([--enable-mozembed],
448         [Build with GtkMozEmbed (yes, no)]),
449 [case "${enableval}" in
450       yes)
451         if test x$have_mozembed = xfalse; then
452            AC_MSG_ERROR([building of GtkMozEmbed support requested and gtkmozembed not found])
453         fi
454         use_mozembed=true
455         ;;
456       *)
457         use_mozembed=false
458         ;;
459 esac],[use_mozembed=false])
460
461 AM_CONDITIONAL(BUILD_MOZEMBED, test x$use_mozembed = xtrue)
462
463 if test x$use_mozembed = xtrue; then
464         AC_DEFINE_UNQUOTED(MODEST_USE_MOZEMBED, 1, ["Whether we use GtkMozEmbed."])
465 fi
466
467 #dnl wether we can and should build the 
468 #dnl search plugin (on maemo)
469 if test "x$with_platform" == "xmaemo"; then  
470 PKG_CHECK_MODULES(MODEST_OGS, libosso >= 0.8.5 libogs-1.2, have_ogs=true, have_ogs=false)
471 have_ogs_support=false
472 AC_ARG_ENABLE(ogs_support,
473 AC_HELP_STRING([--enable-ogs-support],
474         [Build with osso global search support (yes, no)]),
475 [case "${enableval}" in
476       yes)
477         if test x$have_ogs = xfalse; then
478            AC_MSG_ERROR([building of ogs support requested and libogs-1.2 not found])
479         fi
480         ;;
481       *) 
482         have_ogs_support=false
483         ;;
484 esac],[have_ogs_support=$have_ogs])
485
486 if test x$have_ogs_support = xtrue; then
487         AC_DEFINE_UNQUOTED(MODEST_HAVE_OGS, 1, ["Whether ogs is available."])
488 fi
489 fi
490
491
492
493
494 #
495 # check the version of the addressbook on maemo
496 #
497 if test "x$with_platform" == "xmaemo"; then  
498    PKG_CHECK_MODULES(MODEST_ABOOK,osso-addressbook-1.0,have_abook=true,have_abook=false)
499    abook_api=`$PKG_CONFIG --modversion osso-addressbook-1.0 | cut -d. -f1`
500    AC_SUBST(MODEST_ABOOK_CFLAGS)
501    AC_SUBST(MODEST_ABOOK_LIBS)
502
503    if test "x$have_abook" == "xfalse"; then
504      PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false)
505      abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1`
506      AC_SUBST(MODEST_ABOOK_CFLAGS)
507      AC_SUBST(MODEST_ABOOK_LIBE)
508
509      modest_save_cflags="$CFLAGS"
510      modest_save_libs="$LIBS"
511      CFLAGS="$MODEST_ABOOK_CFLAGS"
512      LIBS="$MODEST_ABOOK_LIBS"
513      AC_CHECK_FUNCS(osso_abook_contact_chooser_set_visible_func)
514      AC_SUBST(HAVE_OSSO_ABOOK_CONTACT_CHOOSER_SET_VISIBLE_FUNC)
515      CFLAGS="$modest_save_cflags"
516      LIBS="$modest_save_libs"
517    fi
518
519    if test "x$have_abook" == "xtrue"; then
520       AC_DEFINE_UNQUOTED(OSSO_ABOOK_ENABLE_DEPRECATED, 1, ["use deprecated addressbook API"])
521       AC_DEFINE_UNQUOTED(MODEST_ABOOK_API, $abook_api, ["the API version of osso-addressbook"])
522       AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK, 1, ["whether we have osso-addressbook"])
523       addressbook="osso-addressbook"
524    fi
525 fi
526
527 AC_CHECK_HEADERS([clockd/libtime.h], have_libtime=true, have_libtime=false)
528
529 if test "x$have_libtime" == "xtrue"; then
530    AC_DEFINE_UNQUOTED(MODEST_USE_LIBTIME, 1, ["use libtime API"])
531    MODEST_LIBTIME_LIBS=-ltime
532 else
533    MODEST_LIBTIME_LIBS=
534 fi
535 AC_SUBST(MODEST_LIBTIME_LIBS)
536
537 AC_CHECK_HEADERS([iphbd/libiphb.h], have_libiphb=true, have_libiphb=false)
538
539 if test "x$have_libiphb" == "xtrue"; then
540    AC_DEFINE_UNQUOTED(MODEST_USE_IPHB, 1, ["use IP Heartbeat API"])
541    MODEST_LIBIPHB_LIBS=-liphb
542 else
543    MODEST_LIBIPHB_LIBS=
544 fi
545 AC_SUBST(MODEST_LIBIPHB_LIBS)
546
547 #
548 # if we don't have an addressbook, use the dummy one
549 #
550 AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue")
551
552
553 AM_GLIB_GNU_GETTEXT
554 IT_PROG_INTLTOOL([0.35.0])
555
556 # gettext support
557 GETTEXT_PACKAGE=modest  
558 AC_SUBST(GETTEXT_PACKAGE)
559 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
560
561
562 #
563 # settings for maemo platform
564 #
565 if test "x$with_platform" == "xmaemo"; then  
566
567   # warnings are errors, but don't check format errors, because
568   # it breaks with logical ids
569   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
570
571    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
572    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
573    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
574    backupsettingsdir=/etc/osso-backup/applications
575    prebackupdir=/etc/osso-backup/pre-backup.d/
576    restoredir=/etc/osso-backup/restore.d/always/
577    ossocudscriptsdir=/etc/osso-cud-scripts
578    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
579    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
580    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
581    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
582    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
583    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
584    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
585    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
586
587    dbus_api="dbus_api"
588    AC_SUBST(dbus_api)
589
590    # Define as variables in Makefiles
591    AC_SUBST(desktopentrydir)
592    AC_SUBST(serviceentrydir)
593    AC_SUBST(backupsettingsdir)
594    AC_SUBST(prebackupdir)
595    AC_SUBST(restoredir)
596    AC_SUBST(ossocudscriptsdir)
597    AC_SUBST(localedir)
598    AC_SUBST(pixmapdir)
599    AC_SUBST(icon_26x26dir)
600    AC_SUBST(icon_34x34dir)
601    AC_SUBST(icon_40x40dir)
602    AC_SUBST(icon_50x50dir)
603    AC_SUBST(icon_scalabledir)
604    AC_SUBST(pluginlibdir)
605    AC_SUBST(plugindesktopentrydir)
606
607 fi
608
609 dnl ## setup the testing framework (ie., make check)
610 build_tests=false
611 AC_ARG_ENABLE(tests,
612 AC_HELP_STRING([--enable-tests],
613         [Build tests (no, yes)]),
614 [case "${enableval}" in
615       yes)
616         build_tests=true ;;
617       *) build_tests=false ;;
618 esac],[build_tests=false])
619 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
620
621
622
623 dnl ## is the check package installed?
624 if test x$build_tests = xtrue; then
625    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
626 fi
627
628
629
630 dnl ## do we want documentation (gtk-doc)
631 build_docs=false
632 AC_ARG_ENABLE(docs,
633 AC_HELP_STRING([--enable-docs],
634         [Build documentation (yes, no)]),
635 [case "${enableval}" in
636       yes)
637         build_docs=true ;;
638       *) build_docs=false ;;
639 esac],[build_docs=false])
640 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
641
642 dnl ## gtk-doc
643 GTK_DOC_CHECK([1.0])
644
645 AC_OUTPUT([
646 po/Makefile.in
647 Makefile
648 man/Makefile
649 src/Makefile
650 src/modest-plugin-1.0.pc
651 src/dbus_api/Makefile
652 src/gnome/Makefile
653 src/maemo/Makefile
654 src/maemo/easysetup/Makefile
655 src/hildon2/Makefile
656 src/widgets/Makefile
657 docs/Makefile
658 docs/reference/Makefile
659 tests/Makefile
660 tests/dbus_api/Makefile
661 src/maemo/modest.desktop
662 src/maemo/com.nokia.modest.service
663 src/hildon2/modest.desktop
664 src/hildon2/com.nokia.modest.service
665 ])
666
667
668 echo
669 echo "modest configure results"
670 echo "-----------------------------------"
671 echo "Platform         : $with_platform"
672 echo "Toolkit          : $with_toolkit"
673 echo "Prefix           : ${prefix}"
674 echo "Build tests      : $build_tests"
675 echo "Build docs       : $build_docs"
676 echo "Gettext Package  : $GETTEXT_PACKAGE"
677
678 if test "x$with_platform" == "xmaemo"; then
679    echo "Maemo Launcher   : $maemo_launcher"
680    echo "Editor lib       : $wpeditor"
681    echo "Addressbook      : $have_abook"
682    if test "x$with_toolkit" == "xhildon1"; then
683       echo "Help lib         : $helplib"
684    fi
685    echo "libconic support : $have_libconic"
686    echo "Alarm            : $have_libalarm"
687    echo "MCE              : $have_mce"
688    echo "Hildon-Notify    : $have_hildon_notify"
689    echo "LibOGS support   : $have_ogs_support"
690 fi
691
692 echo "MozEmbed support : $use_mozembed"
693 if [ $gtk_html_found = "true" ]; then
694    echo "GtkHTML version  : $gtk_html_version"
695 fi
696 echo "Libtime          : $have_libtime"
697
698 echo "CFLAGS           : $CFLAGS"
699 echo "Debug version    : $with_debug"
700 echo ""
701 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
702 echo ""