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