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