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