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