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