* Added MCE ifdefs
[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
42
43 if test x$prefix = xNONE; then
44    prefix=/usr/local
45 fi
46 AC_SUBST(prefix)
47
48 AC_PROG_CC
49 AC_PROG_CXX
50 AM_PROG_CC_STDC
51 AC_HEADER_STDC
52 AC_PROG_LIBTOOL
53
54
55 # Option to enable debugging
56 AC_ARG_ENABLE(debug,
57               [AC_HELP_STRING([  --enable-debug],[Debugging (default=no)])],
58               [with_debug=yes], [with_debug=no])
59
60 if test "x$with_debug" == "xyes" ; then
61         CFLAGS="$CFLAGS -ggdb -O0 -DDEBUG -Wall"
62 else
63         CFLAGS="$CFLAGS -O2 -Wall"
64 fi
65
66
67 dnl # GLib/Gobject/Gtk/Gconf => mandatory
68 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-3.8 libtinymail-1.0 libtinymail-camel-1.0 libtinymail-gnomevfs-1.0 libtinymailui-1.0 libtinymailui-gtk-1.0) 
69 AC_SUBST(MODEST_GSTUFF_CFLAGS)
70 AC_SUBST(MODEST_GSTUFF_LIBS)
71
72 modest_save_cflags="$CFLAGS"
73 modest_save_libs="$LIBS"
74 CFLAGS="$MODEST_GSTUFF_CFLAGS"
75 LIBS="$MODEST_GSTUFF_LIBS"
76 AC_CHECK_DECLS([gtk_widget_tap_and_hold_setup],[],[], [#include <gtk/gtk.h>])
77 CFLAGS="$modest_save_cflags"
78 LIBS="$modest_save_libs"
79
80 __COPY_LIBS="$LIBS"
81 LIBS="$LIBS $MODEST_GSTUFF_LIBS"
82 AC_CHECK_FUNCS(gtk_html_get_selection_area)
83 LIBS="$__COPY_LIBS"
84 AC_SUBST(HAVE_GTK_HTML_GET_SELECTION_AREA)
85
86 dnl dnl now, determine what to build
87 dnl AC_MSG_NOTICE([Determining what platform to build])
88 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome])
89
90 AC_ARG_WITH(platform, [
91 Target platform:
92   --with-platform=detect  detect target platform (default)
93   --with-platform=gnome   build for Gnome
94   --with-platform=maemo   build for Maemo
95 ],
96 [case "${with_platform}" in
97        gnome|maemo|detect)    MODEST_PLATFORM=${with_platform};;
98        *)        AC_MSG_ERROR([Unknown platform selected]);;
99 esac], [MODEST_PLATFORM=detect])
100
101 if test "$MODEST_PLATFORM" = "detect"; then
102         MODEST_PLATFORM="$detected_platform"
103         with_platform=$detected_platform
104 fi
105
106
107 dnl Whether to use maemo-launcher or not
108 AC_ARG_ENABLE([maemo-launcher],
109               [AS_HELP_STRING([--enable-maemo-launcher],
110                               [build with maemo-launcher support])],
111                               [case "${enableval}" in
112                                yes) maemo_launcher=true ;;
113                                no)  maemo_launcher=false ;;
114                                *) AC_MSG_ERROR([bad value ${enableval} for --enable-maemo-launcher]) ;;
115                                esac], [maemo_launcher=false])
116 if test x$maemo_launcher = xtrue
117 then
118         PKG_CHECK_MODULES(MAEMO_LAUNCHER, [maemo-launcher-app])
119         AC_SUBST(MAEMO_LAUNCHER_CFLAGS)
120         AC_SUBST(MAEMO_LAUNCHER_LIBS)
121 fi
122
123 have_easysetup=false
124 if test "x$with_platform" == "xgnome"; then
125       PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 libnm_glib glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
126     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
127 dnl     AC_MSG_ERROR([The GNOME Build is currently broken; please try the Maemo build instead])
128 else
129     have_easysetup=true
130     have_dbusapi=true
131     PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 )
132     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
133     AC_DEFINE_UNQUOTED(MODEST_HAVE_EASYSETUP, 1, ["Whether we have the easysetup feature"])
134 fi                  
135
136 AM_CONDITIONAL(MODEST_HAVE_EASYSETUP,test "x$have_easysetup" == "xtrue")
137 AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue")
138 AC_SUBST(MODEST_PLATFORM)
139
140
141
142
143 #
144 # check for wpeditor or libwpeditor-plus (on maemo)
145 #
146 if test "x$with_platform" == "xmaemo"; then  
147 PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
148 if test "x$have_wpeditor" == "xfalse"; then
149    PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)     
150    if test "x$have_libwpeditorplus" == "xtrue"; then
151         wpeditor="libwpeditor-plus"
152         AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])              
153    else
154         AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
155    fi
156 else
157    wpeditor="wpeditor"  
158    AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])           
159 fi
160 fi
161
162
163 #
164 # check libalarm
165 #
166 if test "x$with_platform" == "xmaemo"; then  
167 PKG_CHECK_MODULES(MODEST_LIBALARM,libalarm,have_libalarm=true,have_libalarm=false)
168 if test "x$have_libalarm" == "xtrue"; then
169    libalarm="libalarm"  
170    AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."])           
171    AC_SUBST(MODEST_LIBALARM_CFLAGS)
172    AC_SUBST(MODEST_LIBALARM_LIBS)
173 else
174    libalarm=""
175 fi
176 fi
177
178 #
179 # check for MCE
180 #
181 if test "x$with_platform" == "xmaemo"; then  
182 PKG_CHECK_MODULES(MODEST_MCE,mce,have_mce=true,have_mce=false)
183 if test "x$have_mce" == "xtrue"; then
184    mce="mce"    
185    AC_DEFINE_UNQUOTED(MODEST_HAVE_MCE, 1, ["Whether mce is used."])
186    AC_SUBST(MODEST_MCE_CFLAGS)
187    AC_SUBST(MODEST_MCE_LIBS)
188 else
189    mce=""
190 fi
191 fi
192
193 #
194 # check for libconic; this is a trick to check whether we run
195 # on a 'real' maemo platform, or on, say, ubuntu embedded
196 # this determines whether we build with the non-hildon GTK+
197 #
198 if test "x$with_platform" == "xmaemo"; then  
199 PKG_CHECK_MODULES(MODEST_LIBCONIC,conic,have_libconic=true,have_libconic=false)
200 if test "x$have_libconic" == "xtrue"; then
201    AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_GTK,1,["Whether modest is being built with Hildon/Gtk"])
202    AC_DEFINE_UNQUOTED(MODEST_HAVE_CONIC,1,["Whether modest has conic available"])
203    AC_SUBST(MODEST_LIBCONIC_CLAGS)
204    AC_SUBST(MODEST_LIBCONIC_LIBS)
205 else
206 # if we define this, tinymail will not try to #include conic headers
207    CFLAGS="$CFLAGS -DLIBTINYMAIL_MAEMO_WITHOUT_CONIC"
208 fi
209 fi
210
211 #
212 # check hildon-help (only for maemo)
213 #
214 if test "x$with_platform" == "xmaemo"; then  
215    PKG_CHECK_MODULES(MODEST_HILDON_HELP,hildon-help,have_hildon_help=true,have_hildon_help=false)
216    if test "x$have_hildon_help" == "xfalse"; then
217       PKG_CHECK_MODULES(MODEST_HILDON_HELP,libossohelp,have_osso_help=true,have_osso_help=false)        
218       if test "x$have_osso_help" == "xtrue"; then
219         helplib="osso-help"
220         AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_HELP, 1, ["Whether osso-help is used."])            
221       else
222         AC_MSG_ERROR([you need to have either osso-help or hildon-help installed])
223       fi
224    else
225      helplib="hildon-help"      
226      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_HELP, 1, ["Whether hildon-help is used."])           
227    fi
228 fi
229
230
231
232 #
233 # check for the notification stuff (only maemo)
234 #
235 if test "x$with_platform" == "xmaemo"; then  
236    PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false)
237    if test "x$have_hildon_notify" == "xtrue"; then
238       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"])      
239    fi
240 fi
241
242
243 #
244 # check for the uri/mime stuff
245 #
246 if test "x$with_platform" == "xmaemo"; then  
247    PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false)
248    if test "x$have_hildonmime" == "xfalse"; then
249       PKG_CHECK_MODULES(MODEST_HILDON_MIME,libossomime,have_ossomime=true,have_ossomime=false)  
250       if test "x$have_ossomime" == "xtrue"; then
251         mimelib="osso-mime"
252         AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_MIME, 1, ["Whether osso-mime is used."])            
253       else
254         AC_MSG_ERROR([you need to have either osso-mime or hildon-mime installed])
255       fi
256    else
257      mimelib="hildon-mime"      
258      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])           
259    fi
260 fi
261
262 PKG_CHECK_MODULES(MODEST_MOZEMBED, libtinymailui-mozembed-1.0, have_mozembed=true, have_mozembed=false)
263 AC_ARG_ENABLE(mozembed,
264 AC_HELP_STRING([--enable-mozembed],
265         [Build with GtkMozEmbed (yes, no)]),
266 [case "${enableval}" in
267       yes)
268         if test x$have_mozembed = xfalse; then
269            AC_MSG_ERROR([building of GtkMozEmbed support requested and gtkmozembed not found])
270         fi
271         use_mozembed=true
272         ;;
273       *)
274         use_mozembed=false
275         ;;
276 esac],[use_mozembed=false])
277
278 AM_CONDITIONAL(BUILD_MOZEMBED, test x$use_mozembed = xtrue)
279
280 if test x$use_mozembed = xtrue; then
281         AC_DEFINE_UNQUOTED(MODEST_USE_MOZEMBED, 1, ["Whether we use GtkMozEmbed."])
282 fi
283
284 #dnl wether we can and should build the 
285 #dnl search plugin (on maemo)
286 if test "x$with_platform" == "xmaemo"; then  
287 PKG_CHECK_MODULES(MODEST_OGS, libosso >= 0.8.5 libogs-1.2, have_ogs=true, have_ogs=false)
288 have_ogs_support=false
289 AC_ARG_ENABLE(ogs_support,
290 AC_HELP_STRING([--enable-ogs-support],
291         [Build with osso global search support (yes, no)]),
292 [case "${enableval}" in
293       yes)
294         if test x$have_ogs = xfalse; then
295            AC_MSG_ERROR([building of ogs support requested and libogs-1.2 not found])
296         fi
297         ;;
298       *) 
299         have_ogs_support=false
300         ;;
301 esac],[have_ogs_support=$have_ogs])
302
303 if test x$have_ogs_support = xtrue; then
304         AC_DEFINE_UNQUOTED(MODEST_HAVE_OGS, 1, ["Whether ogs is available."])
305 fi
306 fi
307
308
309
310 #
311 # check the version of the widgets on maemo
312 #
313 if test "x$with_platform" == "xmaemo"; then  
314 PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS, hildon-1 >= 0.9.9 hildon-fm-2, have_hildon1=true,have_hildon1=false)   
315 if test "x$have_hildon1" == "xfalse"; then 
316    PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS, hildon-libs >= 0.12.0 hildon-fm, have_hildon0=true,have_hildon0=false)      
317    if test "x$have_hildon0" == "xtrue"; then
318       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON0_WIDGETS, 1, ["Whether hildon0 widgets are used."])               
319    else
320       AC_MSG_ERROR([hildon widgets and/or hildon-fm not found])
321    fi
322 else
323       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON1_WIDGETS, 1, ["Whether hildon1 widgets are used."])             
324 fi
325 fi
326
327
328
329 #
330 # check the version of the addressbook on maemo
331 #
332 if test "x$with_platform" == "xmaemo"; then  
333    PKG_CHECK_MODULES(MODEST_ABOOK,osso-addressbook-1.0,have_abook=true,have_abook=false)
334    AC_SUBST(MODEST_ABOOK_CFLAGS)
335    AC_SUBST(MODEST_ABOOK_LIBS)
336
337    if test "x$have_abook" == "xtrue"; then      
338       PKG_CHECK_MODULES(MODEST_ABOOK_OLD, osso-addressbook-1.0 < 2.0, have_old_abook=true,have_old_abook=false) 
339       if test "x$have_old_abook" == "xtrue"; then
340          AC_DEFINE_UNQUOTED(MODEST_HAVE_OLD_ABOOK, 1, ["whether we have an old osso-addressbook"])
341       fi
342       AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK,1, ["whether we have osso-addressbook"])
343       addressbook="osso-addressbook"
344    fi
345 fi
346
347
348 #
349 # if we don't have an addressbook, use the dummy one
350 #
351 AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue")
352
353
354 # gettext support
355 GETTEXT_PACKAGE=modest  
356 AC_SUBST(GETTEXT_PACKAGE)
357 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
358
359
360 #
361 # settings for maemo platform
362 #
363 if test "x$with_platform" == "xmaemo"; then  
364
365   # warnings are errors, but don't check format errors, because
366   # it breaks with logical ids
367   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
368
369    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
370    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
371    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
372    backupsettingsdir=/etc/osso-backup/applications
373    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
374    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
375    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
376    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
377    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
378    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
379    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
380    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
381
382    dbus_api="dbus_api"
383    AC_SUBST(dbus_api)
384
385    # Define as variables in Makefiles
386    AC_SUBST(desktopentrydir)
387    AC_SUBST(serviceentrydir)
388    AC_SUBST(backupsettingsdir)
389    AC_SUBST(localedir)
390    AC_SUBST(pixmapdir)
391    AC_SUBST(icon_26x26dir)
392    AC_SUBST(icon_34x34dir)
393    AC_SUBST(icon_40x40dir)
394    AC_SUBST(icon_50x50dir)
395    AC_SUBST(icon_scalabledir)
396    AC_SUBST(pluginlibdir)
397    AC_SUBST(plugindesktopentrydir)
398
399 else
400    # gnome frontend 
401    PKG_CHECK_MODULES(MODEST_LIBTINYMAIL_GNOME_DESKTOP,libtinymail-gnome-desktop-1.0 libnm_glib glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
402    AC_SUBST(MODEST_LIBTINYMAIL_GNOME_DESKTOP_CFLAGS)
403    AC_SUBST(MODEST_LIBTINYMAIL_GNOME_DESKTOP_LIBS)  
404    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
405
406   # no dbus api for gnome
407   dbus_api=""
408   AC_SUBST(dbus_api)
409
410 fi
411
412
413 dnl ## setup the testing framework (ie., make check)
414 build_tests=false
415 AC_ARG_ENABLE(tests,
416 AC_HELP_STRING([--enable-tests],
417         [Build tests (no, yes)]),
418 [case "${enableval}" in
419       yes)
420         build_tests=true ;;
421       *) build_tests=false ;;
422 esac],[build_tests=false])
423 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
424
425
426
427 dnl ## is the check package installed?
428 if test x$build_tests = xtrue; then
429    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
430 fi
431
432
433
434 dnl ## do we want documentation (gtk-doc)
435 build_docs=false
436 AC_ARG_ENABLE(docs,
437 AC_HELP_STRING([--enable-docs],
438         [Build documentation (yes, no)]),
439 [case "${enableval}" in
440       yes)
441         build_docs=true ;;
442       *) build_docs=false ;;
443 esac],[build_docs=false])
444 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
445
446 dnl ## gtk-doc
447 GTK_DOC_CHECK([1.0])
448
449 dnl Intltool utility programs
450 #AC_PROG_INTLTOOL([0.33.0],[no-xml])
451
452 AC_OUTPUT([
453 po/Makefile.in
454 Makefile
455 man/Makefile
456 src/Makefile
457 src/dbus_api/Makefile
458 src/gnome/Makefile
459 src/maemo/Makefile
460 src/maemo/easysetup/Makefile
461 src/widgets/Makefile
462 docs/Makefile
463 docs/reference/Makefile
464 tests/Makefile
465 tests/dbus_api/Makefile
466 src/maemo/modest.desktop
467 src/maemo/com.nokia.modest.service
468 libmodest-dbus-client/Makefile
469 libmodest-dbus-client/libmodest-dbus-client-1.0.pc
470 ])
471
472
473 echo
474 echo "modest configure results"
475 echo "-----------------------------------"
476 echo "Platform         : $with_platform"
477 echo "Prefix           : ${prefix}"
478 echo "Build tests      : $build_tests"
479 echo "Build docs       : $build_docs"
480 echo "Gettext Package  : $GETTEXT_PACKAGE"
481
482 if test "x$with_platform" == "xmaemo"; then
483    echo "Maemo Launcher   : $maemo_launcher"
484    echo "Editor lib       : $wpeditor"
485    echo "Addressbook      : $have_abook"
486    echo "Help lib         : $helplib"
487    echo "libconic support : $have_libconic"
488    echo "Alarm            : $have_libalarm"
489    echo "MCE              : $have_mce"
490    echo "Hildon-Notify    : $have_hildon_notify"    
491    echo "LibOGS support   : $have_ogs_support"
492    echo "MozEmbed support : $use_mozembed"
493 fi 
494
495 echo "CFLAGS           : $CFLAGS"
496 echo "Debug version    : $with_debug"
497 echo ""
498 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
499 echo ""