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