* cleanup the configuration system a bit:
[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 dnl dnl now, determine what to build
73 AC_MSG_NOTICE([Determining what platform to build])
74 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,libosso,[with_platform=maemo],true)
75
76 AC_ARG_WITH(platform,
77 [--with-platform=gnome          platform to build for [gnome]],
78 [case "${with_platform}" in
79        gnome)    MODEST_PLATFORM=gnome;;
80        maemo) MODEST_PLATFORM=maemo;;
81        *)      MODEST_PLATFORM=${with_platform}
82 esac], [MODEST_PLATFORM=gnome
83                with_platform=gnome])
84
85
86 if test "x$with_platform" == "xgnome"; then
87       PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 libnm_glib glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
88     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
89 else
90     PKG_CHECK_MODULES(MODEST_PLATFORM,libosso conic libtinymail-maemo-1.0 osso-addressbook-1.0 libebook-1.2 libalarm)
91     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
92 fi                  
93
94
95
96 AC_SUBST(MODEST_PLATFORM)
97
98
99
100
101
102
103
104
105 #
106 # check for wpeditor or libwpeditor-plus
107 #
108 PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
109 if test "x$have_wpeditor" == "xfalse"; then
110    PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)     
111    if test "x$have_libwpeditorplus" == "xtrue"; then
112         wpeditor="libwpeditor-plus"
113         AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])              
114    else
115         AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
116    fi
117 else
118    wpeditor="wpeditor"  
119    AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])           
120 fi
121
122
123
124 #
125 # check the providers-data
126 #
127 PKG_CHECK_MODULES(MODEST_PROVIDERS_DATA,modest-providers-data,have_modest_providers_data=true,have_modest_providers_data=false)
128 if test "x$have_modest_providers_data" == "xfalse"; then
129    PKG_CHECK_MODULES(MODEST_PROVIDERS_DATA,maemo-providers-data,have_maemo_providers_data=true,have_maemo_providers_data=false)
130    if test "x$have_maemo_providers_data" == "xfalse"; then
131         echo "x$have_maemo_providers_data"   
132         AC_MSG_ERROR([you need to have either modest-providers-data or maemo-providers-data installed])
133    else
134         AC_DEFINE_UNQUOTED(MODEST_HAVE_MAEMO_PROVIDERS_DATA, 1, ["Whether maemo-providers-data is used."])
135         AC_DEFINE_UNQUOTED([MODEST_PROVIDERS_DATA_PATH],["`$PKG_CONFIG --variable=path maemo-providers-data`"],[maemo-providers-data file path])
136         providers_data="maemo-providers-data"           
137    fi
138 else
139   AC_DEFINE_UNQUOTED(MODEST_HAVE_MODEST_PROVIDERS_DATA, 1, ["Whether modest-providers-data is used."])
140   AC_DEFINE_UNQUOTED([MODEST_PROVIDERS_DATA_PATH],["`$PKG_CONFIG --variable=path modest-providers-data`"],[modest-providers-data file path])
141   providers_data="modest-providers-data"                                                                
142 fi
143       
144    
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      helplib="hildon-mime"      
194      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])           
195    fi
196 fi
197
198
199
200 #dnl wether we can and should build the 
201 #dnl search plugin
202 PKG_CHECK_MODULES(MODEST_OGS, libosso >= 0.8.5 libogs-1.2, have_ogs=true, have_ogs=false)
203 have_ogs_support=false
204 AC_ARG_ENABLE(ogs_support,
205 AC_HELP_STRING([--enable-ogs-support],
206         [Build with osso global search support (yes, no)]),
207 [case "${enableval}" in
208       yes)
209         if test x$have_ogs = xfalse; then
210            AC_MSG_ERROR([building of ogs support requested and libogs-1.2 not found])
211         fi
212         ;;
213       *) 
214         have_ogs_support=false
215         ;;
216 esac],[have_ogs_support=$have_ogs])
217
218 if test x$have_ogs_support = xtrue; then
219         AC_DEFINE_UNQUOTED(MODEST_HAVE_OGS, 1, ["Whether ogs is available."])
220 fi
221
222
223
224 #
225 # check the version of the widgets on maemo
226 #
227 if test "x$with_platform" == "xmaemo"; then  
228 PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS, hildon-1 >= 0.9.9 hildon-fm-2, have_hildon1=true,have_hildon1=false)   
229 if test "x$have_hildon1" == "xfalse"; then 
230    PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS, hildon-libs >= 0.12.0 hildon-fm, have_hildon0=true,have_hildon0=false)      
231    if test "x$have_hildon0" == "xtrue"; then
232       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON0_WIDGETS, 1, ["Whether hildon0 widgets are used."])               
233    else
234       AC_MSG_ERROR([hildon widgets and/or hildon-fm not found])
235    fi
236 else
237       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON1_WIDGETS, 1, ["Whether hildon1 widgets are used."])             
238 fi
239 fi
240
241
242
243 #
244 # check the version of the addressbook on maemo
245 #
246 if test "x$with_platform" == "xmaemo"; then  
247    PKG_CHECK_MODULES(MODEST_ABOOK, osso-addressbook-1.0 < 2.0, have_old_abook=true,have_old_abook=false)        
248    if test "x$have_old_abook" == "xtrue"; then
249       AC_DEFINE_UNQUOTED(MODEST_HAVE_OLD_ABOOK, 1, ["whether we have an old osso-addressbook"])
250    fi
251 fi
252
253
254
255 #FIXME: hack to set the right gettext package..
256 if test "x$have_hildon1" == "xtrue"; then
257      GETTEXT_PACKAGE=osso-email
258 else
259      GETTEXT_PACKAGE=modest     
260 fi
261 # Check for gettext support
262 AC_SUBST(GETTEXT_PACKAGE)
263 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
264
265
266 #
267 # settings for maemo platform
268 #
269 if test "x$with_platform" == "xmaemo"; then  
270
271   # warnings are errors, but don't check format errors, because
272   # it breaks with logical ids
273   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
274
275    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
276    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
277    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
278    backupsettingsdir=/etc/osso-backup/applications
279    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
280    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
281    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
282    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
283    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
284    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
285    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
286    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
287
288    dbus_api="dbus_api"
289    AC_SUBST(dbus_api)
290
291    # Define as variables in Makefiles
292    AC_SUBST(desktopentrydir)
293    AC_SUBST(serviceentrydir)
294    AC_SUBST(backupsettingsdir)
295    AC_SUBST(localedir)
296    AC_SUBST(pixmapdir)
297    AC_SUBST(icon_26x26dir)
298    AC_SUBST(icon_34x34dir)
299    AC_SUBST(icon_40x40dir)
300    AC_SUBST(icon_50x50dir)
301    AC_SUBST(icon_scalabledir)
302    AC_SUBST(pluginlibdir)
303    AC_SUBST(plugindesktopentrydir)
304
305 else
306    # gnome frontend 
307    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)
308    AC_SUBST(MODEST_LIBTINYMAIL_GNOME_DESKTOP_CFLAGS)
309    AC_SUBST(MODEST_LIBTINYMAIL_GNOME_DESKTOP_LIBS)  
310    AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
311
312   # no dbus api for gnome
313   dbus_api=""
314   AC_SUBST(dbus_api)
315
316 fi
317
318
319 dnl ## setup the testing framework (ie., make check)
320 build_tests=false
321 AC_ARG_ENABLE(tests,
322 AC_HELP_STRING([--enable-tests],
323         [Build tests (no, yes)]),
324 [case "${enableval}" in
325       yes)
326         build_tests=true ;;
327       *) build_tests=false ;;
328 esac],[build_tests=false])
329 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
330
331
332
333 dnl ## is the check package installed?
334 if test x$build_tests = xtrue; then
335    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
336 fi
337
338
339
340 dnl ## do we want documentation (gtk-doc)
341 build_docs=false
342 AC_ARG_ENABLE(docs,
343 AC_HELP_STRING([--enable-docs],
344         [Build documentation (yes, no)]),
345 [case "${enableval}" in
346       yes)
347         build_docs=true ;;
348       *) build_docs=false ;;
349 esac],[build_docs=false])
350 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
351
352 dnl ## gtk-doc
353 GTK_DOC_CHECK([1.0])
354
355 dnl Intltool utility programs
356 #AC_PROG_INTLTOOL([0.33.0],[no-xml])
357
358 AC_OUTPUT([
359 po/Makefile.in
360 Makefile
361 man/Makefile
362 src/Makefile
363 src/dbus_api/Makefile
364 src/gnome/Makefile
365 src/maemo/Makefile
366 src/maemo/easysetup/Makefile
367 src/widgets/Makefile
368 docs/Makefile
369 docs/reference/Makefile
370 tests/Makefile
371 tests/dbus_api/Makefile
372 src/maemo/modest.desktop
373 src/maemo/com.nokia.modest.service
374 libmodest-dbus-client/Makefile
375 libmodest-dbus-client/libmodest-dbus-client-1.0.pc
376 ])
377
378
379 echo
380 echo "modest configure results"
381 echo "-----------------------------------"
382 echo "Platform         : $with_platform"
383 echo "Prefix           : ${prefix}"
384 echo "Build tests      : $build_tests"
385 echo "Build docs       : $build_docs"
386 echo "Gettext Packages : $GETTEXT_PACKAGE"
387 echo "Easysetup data   : $providers_data"
388 echo "Editor lib       : $wpeditor"
389 echo "Help lib         : $helplib"
390 echo "Hildon-Notify    : $have_hildon_notify"    
391 echo "LibOGS support   : $have_ogs_support"
392 echo "CFLAGS           : $CFLAGS"
393 echo "Gettext Packages : $GETTEXT_PACKAGE"
394 echo "Debug version    : $with_debug"
395 echo ""
396 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
397 echo ""