* Fixes NB#97986, replaced "Attachments" by "Attachment" logical ids in viewer
[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 AC_PROG_CXX
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
68 dnl -------
69 dnl GtkHTML
70 dnl -------
71
72 AC_MSG_CHECKING(for installed version of libgtkhtml3)
73 pkg-config --exists libgtkhtml-3.14
74 retval=$?
75 gtk_html_found=false
76 if test $retval -eq 0 ; then
77     gtk_html_found=true
78     gtk_html_version=3.14
79 else
80     pkg-config --exists libgtkhtml-3.8
81     retval=$?
82     if test $retval -eq 0 ; then
83       gtk_html_found=true
84       gtk_html_version=3.8
85     else
86           if [ $gui = "true" ]; then
87             AC_MSG_RESULT(libgtkhtml 3.4 or higher is not found!)
88           fi
89     fi
90 fi
91
92 if [ $gtk_html_found = "true" ]; then
93    version=`pkg-config --modversion libgtkhtml-${gtk_html_version}`
94    AC_MSG_RESULT(found version $version)
95 else
96    AC_MSG_ERROR([install gtkhtml 3.8 or newer])
97 fi
98
99
100 dnl # GLib/Gobject/Gtk/Gconf => mandatory
101
102 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-${gtk_html_version} libtinymail-1.0 libtinymail-camel-1.0 libtinymail-gnomevfs-1.0 libtinymailui-1.0 libtinymailui-gtk-1.0) 
103 AC_SUBST(MODEST_GSTUFF_CFLAGS)
104 AC_SUBST(MODEST_GSTUFF_LIBS)
105
106 modest_save_cflags="$CFLAGS"
107 modest_save_libs="$LIBS"
108 CFLAGS="$MODEST_GSTUFF_CFLAGS"
109 LIBS="$MODEST_GSTUFF_LIBS"
110 AC_CHECK_DECLS([gtk_widget_tap_and_hold_setup],[],[], [#include <gtk/gtk.h>])
111 CFLAGS="$modest_save_cflags"
112 LIBS="$modest_save_libs"
113
114 __COPY_LIBS="$LIBS"
115 LIBS="$LIBS $MODEST_GSTUFF_LIBS"
116 AC_CHECK_FUNCS(gtk_html_get_selection_area)
117 AC_SUBST(HAVE_GTK_HTML_GET_SELECTION_AREA)
118 AC_CHECK_FUNCS(gtk_tree_view_column_get_cell_data_hint)
119 AC_SUBST(HAVE_GTK_TREE_VIEW_COLUMN_GET_CELL_DATA_HINT)
120 LIBS="$__COPY_LIBS"
121
122 dnl dnl now, determine what to build
123 dnl AC_MSG_NOTICE([Determining what platform to build])
124 PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome])
125
126 AC_ARG_WITH(platform, [
127 Target platform:
128   --with-platform=detect  detect target platform (default)
129   --with-platform=gnome   build for Gnome
130   --with-platform=maemo   build for Maemo
131 ],
132 [case "${with_platform}" in
133        gnome|maemo|detect)    MODEST_PLATFORM=${with_platform};;
134        *)        AC_MSG_ERROR([Unknown platform selected]);;
135 esac], [MODEST_PLATFORM=detect])
136
137 if test "$MODEST_PLATFORM" = "detect"; then
138         MODEST_PLATFORM="$detected_platform"
139         with_platform=$detected_platform
140 fi
141
142 if test "$with_platform" = "maemo"; then
143         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_MAEMO"
144 elif test "$with_platform" = "gnome"; then
145         MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME"
146 fi
147 AC_SUBST(MODEST_PLUGIN_DEFINES)
148
149 #
150 # check the widgets library
151 #
152 have_hildon2=false
153 have_hildon1=false
154 have_hildon0=false
155 have_gtk=false
156 PKG_CHECK_EXISTS(hildon-1, have_hildon1=true,have_hildon1=false)
157 if test "$have_hildon1" = "true"; then
158    PKG_CHECK_EXISTS(hildon-1 >= 2.1.0, have_hildon2=true, have_hildon2=false)
159    PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS,hildon-1 hildon-fm-2)
160    hildonpkgs="hildon-1 hildon-fm-2"
161    detected_toolkit=hildon1
162    echo "DETECTED HILDON 1 $have_hildon2."
163 else
164    hildonpkgs="hildon-libs hildon-fm"
165    detected_toolkit=hildon1
166    PKG_CHECK_EXISTS(hildon-libs >= 0.12.0, have_hildon1=true, have_hildon1=false)
167    if test "$have_hildon1" = "false"; then
168       PKG_CHECK_EXISTS(hildon-libs, have_hildon0=true, have_hildon0=false)
169       if test "$have_hildon0" = "false"; then
170          have_gtk=true
171          detected_toolkit=gtk
172          hildonpkgs=
173       fi
174    fi
175    if test "$have_gtk" = "false"; then
176       PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS,hildon-libs hildon-fm)
177    fi
178 fi
179
180 dnl --------------- HILDON & PLUGIN PKGS -----------
181 pluginpkgs=$hildonpkgs
182 echo "Plugin Packages $pluginpkgs"
183 AC_SUBST(pluginpkgs)
184
185 # Plugin packages must not include libcanberra and libprofile
186 if test "$have_hildon2" = "true"; then
187    echo "DETECTED HILDON 2 $have_hildon2."
188    detected_toolkit=hildon2
189    hildonpkgs="$hildonpkgs libcanberra profile"
190    echo "HILDON 2 PACKAGES $hildonpkgs"
191 fi
192 AC_SUBST(hildonpkgs)
193
194 dnl --------------- HILDON API ------------
195 hildon_api=
196 if test "$have_hildon0" = "true"; then
197    hildon_api=0
198 elif test "$have_hildon1" = "true"; then
199    hildon_api=1
200 elif test "$have_gtk" = "false"; then
201    hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1`
202 fi
203
204 AC_DEFINE_UNQUOTED(MODEST_HILDON_API, $hildon_api, ["the API version of hildon"])
205 MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_HILDON_API=$hildon_api"
206
207 AC_ARG_WITH(toolkit, [
208 Target toolkit:
209   --with-toolkit=detect  detect target toolkit (default)
210   --with-toolkit=gtk   build for Gnome
211   --with-toolkit=hildon1   build for Hildon 1.x
212   --with-toolkit=hildon2   build for Hildon 2.x
213 ],
214 [case "${with_toolkit}" in
215        gtk|hildon1|hildon2|detect)    MODEST_TOOLKIT=${with_toolkit};;
216        *)        AC_MSG_ERROR([Unknown platform selected]);;
217 esac], [MODEST_TOOLKIT=detect])
218
219 if test "$MODEST_TOOLKIT" = "detect"; then
220         MODEST_TOOLKIT="$detected_toolkit"
221         with_toolkit=$detected_toolkit
222 fi
223
224 if test "$with_toolkit" = "hildon1"; then
225         MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON1"
226 elif test "$with_toolkit" = "hildon2"; then
227         MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON2"
228 elif test "$with_toolkit" = "gtk"; then
229         MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GNOME"
230 fi
231
232 dnl Whether to use maemo-launcher or not
233 AC_ARG_ENABLE([maemo-launcher],
234               [AS_HELP_STRING([--enable-maemo-launcher],
235                               [build with maemo-launcher support])],
236                               [case "${enableval}" in
237                                yes) maemo_launcher=true ;;
238                                no)  maemo_launcher=false ;;
239                                *) AC_MSG_ERROR([bad value ${enableval} for --enable-maemo-launcher]) ;;
240                                esac], [maemo_launcher=false])
241 if test x$maemo_launcher = xtrue
242 then
243         PKG_CHECK_MODULES(MAEMO_LAUNCHER, [maemo-launcher-app])
244         AC_SUBST(MAEMO_LAUNCHER_CFLAGS)
245         AC_SUBST(MAEMO_LAUNCHER_LIBS)
246 fi
247
248 have_easysetup=false
249 if test "x$with_toolkit" == "xgtk"; then
250    PKG_CHECK_MODULES(MODEST_TOOLKIT,glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify)
251    AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_GTK, 1, ["Whether modest is being build for the gtk toolkit."])
252    MODEST_TOOLKIT_DIR=gnome
253 else
254    have_easysetup=true
255    PKG_CHECK_MODULES(MODEST_TOOLKIT,$hildonpkgs)
256    if test "$with_toolkit" = "hildon2"; then
257       AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON2, 1, ["Whether modest is being build for the hildon2 toolkit."])
258       MODEST_TOOLKIT_DIR=hildon2
259    else
260       AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON1, 1, ["Whether modest is being build for the hildon2 toolkit."])
261       MODEST_TOOLKIT_DIR=maemo
262    fi
263     AC_DEFINE_UNQUOTED(MODEST_HAVE_EASYSETUP, 1, ["Whether we have the easysetup feature"])
264 fi
265 AM_CONDITIONAL(MODEST_HAVE_EASYSETUP,test "x$have_easysetup" == "xtrue")
266 AC_SUBST(MODEST_TOOLKIT)
267 AC_SUBST(MODEST_TOOLKIT_DIR)
268
269 if test "x$with_platform" == "xgnome"; then
270       PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 libnm_glib glib-2.0 >= 2.8 libnotify)
271     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."])
272 dnl     AC_MSG_ERROR([The GNOME Build is currently broken; please try the Maemo build instead])
273 else
274     have_dbusapi=true
275     PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 )
276     AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."])
277 fi
278 AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue")
279 AC_SUBST(MODEST_PLATFORM)
280
281
282
283 #
284 # check for wpeditor or libwpeditor-plus (on maemo)
285 #
286 if test "x$with_toolkit" != "xgtk"; then  
287 PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false)
288 if test "x$have_wpeditor" == "xfalse"; then
289    PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false)     
290    if test "x$have_libwpeditorplus" == "xtrue"; then
291         wpeditor="libwpeditor-plus"
292         AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."])              
293    else
294         AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed])
295    fi
296 else
297    wpeditor="wpeditor"  
298    AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."])           
299 fi
300 fi
301
302
303 #
304 # check libalarm
305 #
306 if test "x$with_platform" == "xmaemo"; then  
307    PKG_CHECK_MODULES(MODEST_LIBALARM,libalarm,have_libalarm=true,have_libalarm=false)
308    if test "x$have_libalarm" == "xfalse"; then
309       PKG_CHECK_MODULES(MODEST_LIBALARM, alarm, have_libalarm=true,have_libalarm=false)
310    fi
311    if test "x$have_libalarm" == "xtrue"; then
312       AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."])                
313       AC_SUBST(MODEST_LIBALARM_CFLAGS)
314       AC_SUBST(MODEST_LIBALARM_LIBS)
315    fi
316 fi
317
318 #
319 # check for MCE
320 #
321 if test "x$with_platform" == "xmaemo"; then  
322 PKG_CHECK_MODULES(MODEST_MCE,mce,have_mce=true,have_mce=false)
323 if test "x$have_mce" == "xtrue"; then
324    mce="mce"    
325    AC_DEFINE_UNQUOTED(MODEST_HAVE_MCE, 1, ["Whether mce is used."])
326    AC_SUBST(MODEST_MCE_CFLAGS)
327    AC_SUBST(MODEST_MCE_LIBS)
328 else
329    mce=""
330 fi
331 fi
332
333 #
334 # check for libconic; this is a trick to check whether we run
335 # on a 'real' maemo platform, or on, say, ubuntu embedded
336 # this determines whether we build with the non-hildon GTK+
337 #
338 if test "x$with_platform" == "xmaemo"; then  
339 PKG_CHECK_MODULES(MODEST_LIBCONIC,conic,have_libconic=true,have_libconic=false)
340 if test "x$have_libconic" == "xtrue"; then
341    AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_GTK,1,["Whether modest is being built with Hildon/Gtk"])
342    AC_DEFINE_UNQUOTED(MODEST_HAVE_CONIC,1,["Whether modest has conic available"])
343    AC_SUBST(MODEST_LIBCONIC_CLAGS)
344    AC_SUBST(MODEST_LIBCONIC_LIBS)
345 else
346 # if we define this, tinymail will not try to #include conic headers
347    CFLAGS="$CFLAGS -DLIBTINYMAIL_MAEMO_WITHOUT_CONIC"
348 fi
349 fi
350
351 #
352 # check hildon-help (only for maemo)
353 #
354 if test "x$with_toolkit" != "xgtk"; then  
355    PKG_CHECK_MODULES(MODEST_HILDON_HELP,hildon-help,have_hildon_help=true,have_hildon_help=false)
356    if test "x$have_hildon_help" == "xfalse"; then
357       PKG_CHECK_MODULES(MODEST_HILDON_HELP,libossohelp,have_osso_help=true,have_osso_help=false)        
358       if test "x$have_osso_help" == "xtrue"; then
359         helplib="osso-help"
360         AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_HELP, 1, ["Whether osso-help is used."])            
361       else
362         AC_MSG_ERROR([you need to have either osso-help or hildon-help installed])
363       fi
364    else
365      helplib="hildon-help"      
366      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_HELP, 1, ["Whether hildon-help is used."])           
367    fi
368 fi
369
370
371
372 #
373 # check for the notification stuff (only maemo)
374 #
375 if test "x$with_toolkit" != "xgtk"; then  
376    PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false)
377    if test "x$have_hildon_notify" == "xtrue"; then
378       AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"])      
379    fi
380 fi
381
382
383 #
384 # check for the uri/mime stuff
385 #
386 if test "x$with_toolkit" != "xgtk"; then  
387    PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false)
388    if test "x$have_hildonmime" == "xfalse"; then
389       PKG_CHECK_MODULES(MODEST_HILDON_MIME,libossomime,have_ossomime=true,have_ossomime=false)  
390       if test "x$have_ossomime" == "xtrue"; then
391         mimelib="osso-mime"
392         AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_MIME, 1, ["Whether osso-mime is used."])            
393       else
394         AC_MSG_ERROR([you need to have either osso-mime or hildon-mime installed])
395       fi
396    else
397      mimelib="hildon-mime"      
398      AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."])           
399    fi
400 fi
401
402 PKG_CHECK_MODULES(MODEST_MOZEMBED, libtinymailui-mozembed-1.0, have_mozembed=true, have_mozembed=false)
403 AC_ARG_ENABLE(mozembed,
404 AC_HELP_STRING([--enable-mozembed],
405         [Build with GtkMozEmbed (yes, no)]),
406 [case "${enableval}" in
407       yes)
408         if test x$have_mozembed = xfalse; then
409            AC_MSG_ERROR([building of GtkMozEmbed support requested and gtkmozembed not found])
410         fi
411         use_mozembed=true
412         ;;
413       *)
414         use_mozembed=false
415         ;;
416 esac],[use_mozembed=false])
417
418 AM_CONDITIONAL(BUILD_MOZEMBED, test x$use_mozembed = xtrue)
419
420 if test x$use_mozembed = xtrue; then
421         AC_DEFINE_UNQUOTED(MODEST_USE_MOZEMBED, 1, ["Whether we use GtkMozEmbed."])
422 fi
423
424 #dnl wether we can and should build the 
425 #dnl search plugin (on maemo)
426 if test "x$with_platform" == "xmaemo"; then  
427 PKG_CHECK_MODULES(MODEST_OGS, libosso >= 0.8.5 libogs-1.2, have_ogs=true, have_ogs=false)
428 have_ogs_support=false
429 AC_ARG_ENABLE(ogs_support,
430 AC_HELP_STRING([--enable-ogs-support],
431         [Build with osso global search support (yes, no)]),
432 [case "${enableval}" in
433       yes)
434         if test x$have_ogs = xfalse; then
435            AC_MSG_ERROR([building of ogs support requested and libogs-1.2 not found])
436         fi
437         ;;
438       *) 
439         have_ogs_support=false
440         ;;
441 esac],[have_ogs_support=$have_ogs])
442
443 if test x$have_ogs_support = xtrue; then
444         AC_DEFINE_UNQUOTED(MODEST_HAVE_OGS, 1, ["Whether ogs is available."])
445 fi
446 fi
447
448
449
450
451 #
452 # check the version of the addressbook on maemo
453 #
454 if test "x$with_platform" == "xmaemo"; then  
455    PKG_CHECK_MODULES(MODEST_ABOOK,osso-addressbook-1.0,have_abook=true,have_abook=false)
456    abook_api=`$PKG_CONFIG --modversion osso-addressbook-1.0 | cut -d. -f1`
457    AC_SUBST(MODEST_ABOOK_CFLAGS)
458    AC_SUBST(MODEST_ABOOK_LIBS)
459
460    if test "x$have_abook" == "xfalse"; then
461      PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false)
462      abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1`
463      AC_SUBST(MODEST_ABOOK_CFLAGS)
464      AC_SUBST(MODEST_ABOOK_LIBE)
465    fi
466
467    if test "x$have_abook" == "xtrue"; then
468       AC_DEFINE_UNQUOTED(OSSO_ABOOK_ENABLE_DEPRECATED, 1, ["use deprecated addressbook API"])
469       AC_DEFINE_UNQUOTED(MODEST_ABOOK_API, $abook_api, ["the API version of osso-addressbook"])
470       AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK, 1, ["whether we have osso-addressbook"])
471       addressbook="osso-addressbook"
472    fi
473 fi
474
475
476 #
477 # if we don't have an addressbook, use the dummy one
478 #
479 AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue")
480
481
482 AM_GLIB_GNU_GETTEXT
483 IT_PROG_INTLTOOL([0.35.0])
484
485 # gettext support
486 GETTEXT_PACKAGE=modest  
487 AC_SUBST(GETTEXT_PACKAGE)
488 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"])
489
490
491 #
492 # settings for maemo platform
493 #
494 if test "x$with_platform" == "xmaemo"; then  
495
496   # warnings are errors, but don't check format errors, because
497   # it breaks with logical ids
498   CFLAGS="$CFLAGS -Wno-format-extra-args -Werror"
499
500    desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir`
501    serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services
502    localedir=`$PKG_CONFIG osso-af-settings --variable=localedir`
503    backupsettingsdir=/etc/osso-backup/applications
504    pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir`
505    icon_26x26dir=$datadir/icons/hicolor/26x26/hildon
506    icon_34x34dir=$datadir/icons/hicolor/34x34/hildon
507    icon_40x40dir=$datadir/icons/hicolor/40x40/hildon
508    icon_50x50dir=$datadir/icons/hicolor/50x50/hildon
509    icon_scalabledir=$datadir/icons/hicolor/scalable/hildon
510    pluginlibdir=`$PKG_CONFIG hildon-control-panel --variable=plugindir`
511    plugindesktopentrydir=`$PKG_CONFIG hildon-control-panel --variable=plugindesktopentrydir`
512
513    dbus_api="dbus_api"
514    AC_SUBST(dbus_api)
515
516    # Define as variables in Makefiles
517    AC_SUBST(desktopentrydir)
518    AC_SUBST(serviceentrydir)
519    AC_SUBST(backupsettingsdir)
520    AC_SUBST(localedir)
521    AC_SUBST(pixmapdir)
522    AC_SUBST(icon_26x26dir)
523    AC_SUBST(icon_34x34dir)
524    AC_SUBST(icon_40x40dir)
525    AC_SUBST(icon_50x50dir)
526    AC_SUBST(icon_scalabledir)
527    AC_SUBST(pluginlibdir)
528    AC_SUBST(plugindesktopentrydir)
529
530 fi
531
532 dnl ## setup the testing framework (ie., make check)
533 build_tests=false
534 AC_ARG_ENABLE(tests,
535 AC_HELP_STRING([--enable-tests],
536         [Build tests (no, yes)]),
537 [case "${enableval}" in
538       yes)
539         build_tests=true ;;
540       *) build_tests=false ;;
541 esac],[build_tests=false])
542 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue)
543
544
545
546 dnl ## is the check package installed?
547 if test x$build_tests = xtrue; then
548    PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0)
549 fi
550
551
552
553 dnl ## do we want documentation (gtk-doc)
554 build_docs=false
555 AC_ARG_ENABLE(docs,
556 AC_HELP_STRING([--enable-docs],
557         [Build documentation (yes, no)]),
558 [case "${enableval}" in
559       yes)
560         build_docs=true ;;
561       *) build_docs=false ;;
562 esac],[build_docs=false])
563 AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue)
564
565 dnl ## gtk-doc
566 GTK_DOC_CHECK([1.0])
567
568 AC_OUTPUT([
569 po/Makefile.in
570 Makefile
571 man/Makefile
572 src/Makefile
573 src/modest-plugin-1.0.pc
574 src/dbus_api/Makefile
575 src/gnome/Makefile
576 src/maemo/Makefile
577 src/maemo/easysetup/Makefile
578 src/hildon2/Makefile
579 src/widgets/Makefile
580 docs/Makefile
581 docs/reference/Makefile
582 tests/Makefile
583 tests/dbus_api/Makefile
584 src/maemo/modest.desktop
585 src/maemo/com.nokia.modest.service
586 src/hildon2/modest.desktop
587 src/hildon2/com.nokia.modest.service
588 libmodest-dbus-client/Makefile
589 libmodest-dbus-client/libmodest-dbus-client-1.0.pc
590 ])
591
592
593 echo
594 echo "modest configure results"
595 echo "-----------------------------------"
596 echo "Platform         : $with_platform"
597 echo "Toolkit          : $with_toolkit"
598 echo "Prefix           : ${prefix}"
599 echo "Build tests      : $build_tests"
600 echo "Build docs       : $build_docs"
601 echo "Gettext Package  : $GETTEXT_PACKAGE"
602
603 if test "x$with_platform" == "xmaemo"; then
604    echo "Maemo Launcher   : $maemo_launcher"
605    echo "Editor lib       : $wpeditor"
606    echo "Addressbook      : $have_abook"
607    echo "Help lib         : $helplib"
608    echo "libconic support : $have_libconic"
609    echo "Alarm            : $have_libalarm"
610    echo "MCE              : $have_mce"
611    echo "Hildon-Notify    : $have_hildon_notify"    
612    echo "LibOGS support   : $have_ogs_support"
613    echo "MozEmbed support : $use_mozembed"
614 fi 
615
616 echo "CFLAGS           : $CFLAGS"
617 echo "Debug version    : $with_debug"
618 echo ""
619 echo "NOTE: you should do a 'make clean' after changing architecture or platform (--with-platform=)"
620 echo ""