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