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