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