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