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