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