X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=configure.ac;h=d16b7bae330ed9b929f2456e31bac9b91bc98ab1;hp=3c82a6019b9c7fdf6df24549de0f059ec89b210e;hb=f1b54c4a866e1449165c22314474a0d0bdda1cf0;hpb=9f4b19654c1a2e8190d754306a17ce1fd0c14fd6 diff --git a/configure.ac b/configure.ac index 3c82a60..d16b7ba 100644 --- a/configure.ac +++ b/configure.ac @@ -1,10 +1,10 @@ # Copyright (c) 2006,2007 Nokia Corporation # All rights reserved. -# +# # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: -# +# # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright @@ -13,7 +13,7 @@ # * Neither the name of the Nokia Corporation nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. -# +# # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A @@ -26,20 +26,38 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -AC_INIT([modest],[1.0],[http://maemo.org]) +AC_INIT([modest],[3.90.5],[http://maemo.org]) AC_CONFIG_HEADERS([config.h]) +m4_define([modest_api_major_version], [1]) +m4_define([modest_api_minor_version], [99]) +m4_define([modest_api_micro_version], [0]) +m4_define([modest_api_version], [modest_api_major_version.modest_api_minor_version.modest_api_micro_version]) + + AC_CONFIG_SRCDIR(src/modest-main.c) AM_INIT_AUTOMAKE([dist-bzip2]) +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +MODEST_API_MAJOR_VERSION=modest_api_major_version +MODEST_API_MINOR_VERSION=modest_api_minor_version +MODEST_API_MICRO_VERSION=modest_api_micro_version +MODEST_API_VERSION=modest_api_version +AC_SUBST(MODEST_API_MAJOR_VERSION) +AC_SUBST(MODEST_API_MINOR_VERSION) +AC_SUBST(MODEST_API_MICRO_VERSION) +AC_SUBST(MODEST_API_VERSION) + ALL_LINGUAS="en_GB" MODEST_LOCALE_DIR='$prefix/${DATADIRNAME}/locale' AM_GLIB_DEFINE_LOCALEDIR([MODEST_LOCALE_DIR]) AM_GLIB_GNU_GETTEXT - - if test x$prefix = xNONE; then prefix=/usr/local fi @@ -48,13 +66,16 @@ AC_SUBST(prefix) AC_PROG_CC AC_PROG_CXX AM_PROG_CC_STDC +AM_PROG_CC_C_O AC_HEADER_STDC AC_PROG_LIBTOOL +# Initialize pkg-config stuff +PKG_PROG_PKG_CONFIG() # Option to enable debugging AC_ARG_ENABLE(debug, - [AC_HELP_STRING([ --enable-debug],[Debugging (default=no)])], + [AC_HELP_STRING([--enable-debug],[Debugging (default=no)])], [with_debug=yes], [with_debug=no]) if test "x$with_debug" == "xyes" ; then @@ -63,28 +84,97 @@ else CFLAGS="$CFLAGS -O2 -Wall" fi +# Option to enable debugging +AC_ARG_ENABLE(gcov, + [AC_HELP_STRING([--enable-gcov],[Coverage reporting (default=no)])], + [with_gcov=yes], [with_gcov=no]) + +if test "x$with_gcov" == "xyes" ; then + CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage" + LDFLAGS="$LDFLAGS -lgcov" +fi + +dnl ------ +dnl WebKit +dnl ------ + +# Option to enable debugging +with_webkit=no +AC_ARG_ENABLE(webkit, + [AC_HELP_STRING([--enable-webkit],[Enable webkit support (default=no)])], + [with_webkit=yes], [with_webkit=no]) + +if test "x$with_webkit" == "xyes" ; then + PKG_CHECK_EXISTS(MODEST_WEBKIT,webkit-1.0,have_webkit=true,have_webkit=false) + AC_SUBST(MODEST_WEBKIT_CFLAGS) + AC_SUBST(MODEST_WEBKIT_LIBS) + AC_DEFINE_UNQUOTED(MODEST_USE_WEBKIT, 1, ["Whether modest is being build with webkit support."]) +fi + +AM_CONDITIONAL(MODEST_USE_WEBKIT,test "x$with_webkit" == "xyes") + + +dnl ------- +dnl GtkHTML +dnl ------- + +AC_MSG_CHECKING(for installed version of libgtkhtml3) +pkg-config --exists libgtkhtml-3.14 +retval=$? +gtk_html_found=false +if test $retval -eq 0 ; then + gtk_html_found=true + gtk_html_version=3.14 +else + pkg-config --exists libgtkhtml-3.8 + retval=$? + if test $retval -eq 0 ; then + gtk_html_found=true + gtk_html_version=3.8 + else + if [ $gui = "true" ]; then + AC_MSG_RESULT(libgtkhtml 3.4 or higher is not found!) + fi + fi +fi + +if [ $gtk_html_found = "true" ]; then + version=`pkg-config --modversion libgtkhtml-${gtk_html_version}` + AC_MSG_RESULT(found version $version) +else + AC_MSG_ERROR([install gtkhtml 3.8 or newer]) +fi dnl # GLib/Gobject/Gtk/Gconf => mandatory -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) + +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) AC_SUBST(MODEST_GSTUFF_CFLAGS) AC_SUBST(MODEST_GSTUFF_LIBS) modest_save_cflags="$CFLAGS" modest_save_libs="$LIBS" -CFLAGS="$MODEST_GSTUFF_CFLAGS" -LIBS="$MODEST_GSTUFF_LIBS" +PKG_CHECK_MODULES(MODEST_GTKHTML,libgtkhtml-${gtk_html_version}) +AC_SUBST(MODEST_GTKHTML_CFLAGS) +AC_SUBST(MODEST_GTKHTML_LIBS) +CFLAGS="$MODEST_GTKHTML_CFLAGS" +LIBS="$MODEST_GTKHTML_LIBS" AC_CHECK_DECLS([gtk_widget_tap_and_hold_setup],[],[], [#include ]) -CFLAGS="$modest_save_cflags" -LIBS="$modest_save_libs" - -__COPY_LIBS="$LIBS" -LIBS="$LIBS $MODEST_GSTUFF_LIBS" +AC_CHECK_FUNCS(gtk_html_set_max_image_size) +AC_SUBST(HAVE_GTK_HTML_SET_MAX_IMAGE_SIZE) AC_CHECK_FUNCS(gtk_html_get_selection_area) -LIBS="$__COPY_LIBS" AC_SUBST(HAVE_GTK_HTML_GET_SELECTION_AREA) +AC_CHECK_FUNCS(gtk_html_set_allow_dnd) +AC_SUBST(HAVE_GTK_HTML_SET_ALLOW_DND) +AC_CHECK_FUNCS(gtk_html_set_default_engine) +AC_SUBST(HAVE_GTK_HTML_SET_DEFAULT_ENGINE) +AC_CHECK_FUNCS(gtk_html_set_word_char_wrapping) +AC_SUBST(HAVE_GTK_HTML_SET_WORD_CHAR_WRAPPING) +AC_CHECK_FUNCS(gtk_tree_view_column_get_cell_data_hint) +AC_SUBST(HAVE_GTK_TREE_VIEW_COLUMN_GET_CELL_DATA_HINT) +CFLAGS="$modest_save_cflags" +LIBS="$modest_save_libs" -dnl dnl now, determine what to build -dnl AC_MSG_NOTICE([Determining what platform to build]) +dnl --------------- PLATFORM ----------- PKG_CHECK_MODULES(MODEST_MAEMO_LIBS,conic,[detected_platform=maemo],[detected_platform=gnome]) AC_ARG_WITH(platform, [ @@ -103,8 +193,103 @@ if test "$MODEST_PLATFORM" = "detect"; then with_platform=$detected_platform fi +if test "$with_platform" = "maemo"; then + MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_MAEMO -DMODEST_API_VERSION=${MODEST_API_VERSION}" + PKG_CHECK_MODULES(LIBMODEST_DBUS_CLIENT,libmodest-dbus-client-1.0 >= 3.2.0) +elif test "$with_platform" = "gnome"; then + MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME -DMODEST_API_VERSION=${MODEST_API_VERSION}" +fi +AC_SUBST(MODEST_PLUGIN_DEFINES) +AM_CONDITIONAL(MODEST_BUILD_ASDBUS,test "x$with_platform" == "xmaemo") + -dnl Whether to use maemo-launcher or not +dnl ---------- PLATFORM: *DBUS API* ----------- +if test "x$with_platform" == "xgnome"; then + PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 glib-2.0 >= 2.8 libnotify) + AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."]) +else + have_dbusapi=true + PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 ) + AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."]) +fi +AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue") +AC_SUBST(MODEST_PLATFORM) + + +dnl --------------- TOOLKIT SELECTION ----------- +AC_ARG_WITH(toolkit, [ +Target toolkit: + --with-toolkit=detect detect target toolkit (default) + --with-toolkit=gtk build for Gnome + --with-toolkit=hildon2 build for Hildon 2.x +], +[case "${with_toolkit}" in + gtk|hildon2|detect) MODEST_TOOLKIT=${with_toolkit};; + *) AC_MSG_ERROR([Unknown toolkit selected]);; +esac], [MODEST_TOOLKIT=detect]) + +have_hildon2=false +have_gtk=false + +if test "$MODEST_TOOLKIT" = "detect"; then + PKG_CHECK_EXISTS(hildon-1 >= 2.1.0 hildon-fm-2, have_hildon2=true, have_hildon2=false) + PKG_CHECK_EXISTS(glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify, have_gtk=true, have_gtk=false) + if test "x$have_hildon2" = "xtrue"; then + detected_toolkit=hildon2 + hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1` + echo "DETECTED HILDON 2 $have_hildon2 (API is $hildon_api)." + elif test "x$have_gtk" == "xtrue"; then + detected_toolkit=gtk + echo "DETECTED GTK." + fi + MODEST_TOOLKIT="$detected_toolkit" + with_toolkit=$detected_toolkit +fi + +dnl -------- TOOLKIT SELECTION: *HILDON API* ----------- +if test "x$with_toolkit" == "xhildon2"; then + hildonpkgs="hildon-1 hildon-fm-2" + hildon_api=`$PKG_CONFIG --modversion hildon-1 | cut -d. -f1` + AC_DEFINE_UNQUOTED(MODEST_HILDON_API, $hildon_api, ["the API version of hildon"]) + MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_HILDON_API=$hildon_api" + MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_HILDON2" +elif test "x$with_toolkit" == "xgtk"; then + MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GTK" +fi + +dnl -------- TOOLKIT SELECTION: *TOOLKIT DIR* ----------- +if test "x$with_toolkit" == "xgtk"; then + PKG_CHECK_MODULES(MODEST_TOOLKIT,glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify) + AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_GTK, 1, ["Whether modest is being build for the gtk toolkit."]) + MODEST_TOOLKIT_DIR=gtk +elif test "$with_toolkit" = "hildon2"; then + AC_DEFINE_UNQUOTED(MODEST_TOOLKIT_HILDON2, 1, ["Whether modest is being build for the hildon2 toolkit."]) + MODEST_TOOLKIT_DIR=hildon2 +fi +AC_SUBST(MODEST_TOOLKIT) +AC_SUBST(MODEST_TOOLKIT_DIR) + + +dnl --------------- HILDON & PLUGIN PKGS ----------- +pluginpkgs=$hildonpkgs +dnl echo "Plugin Packages $pluginpkgs" +AC_SUBST(pluginpkgs) + +use_profile_data=false +# Plugin packages must not include libcanberra and libprofile +if test "x$with_platform" == "xmaemo"; then + hildonpkgs="$hildonpkgs libcanberra" + AC_CHECK_HEADER([profiled/keys_nokia.h], use_profile_data=true, use_profile_data=false) + if test "$use_profile_data" = "true"; then + hildonpkgs="$hildonpkgs profile" + AC_DEFINE_UNQUOTED(MODEST_USE_PROFILE, 1, ["Use the Profile data include"]) +dnl echo "HILDON 2 PACKAGES $hildonpkgs" + fi +fi +AC_SUBST(hildonpkgs) +PKG_CHECK_MODULES(MODEST_TOOLKIT,$hildonpkgs) + +dnl -------------------- MAEMO LAUNCHER STUFF ------------ AC_ARG_ENABLE([maemo-launcher], [AS_HELP_STRING([--enable-maemo-launcher], [build with maemo-launcher support])], @@ -118,69 +303,42 @@ then PKG_CHECK_MODULES(MAEMO_LAUNCHER, [maemo-launcher-app]) AC_SUBST(MAEMO_LAUNCHER_CFLAGS) AC_SUBST(MAEMO_LAUNCHER_LIBS) -fi - -have_easysetup=false -if test "x$with_platform" == "xgnome"; then - PKG_CHECK_MODULES(MODEST_PLATFORM,libtinymail-gnome-desktop-1.0 libnm_glib glib-2.0 >= 2.8 gtk+-2.0 >= 2.10 libnotify) - AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."]) -dnl AC_MSG_ERROR([The GNOME Build is currently broken; please try the Maemo build instead]) + MAEMO_LAUNCHER_MODEST_LDFLAGS="-shared " else - have_easysetup=true - have_dbusapi=true - PKG_CHECK_MODULES(MODEST_PLATFORM,libosso dbus-1 libtinymail-maemo-1.0 libebook-1.2 ) - AC_DEFINE_UNQUOTED(MODEST_PLATFORM_MAEMO, 1, ["Whether modest is being built for the MAEMO platform."]) - AC_DEFINE_UNQUOTED(MODEST_HAVE_EASYSETUP, 1, ["Whether we have the easysetup feature"]) -fi - -AM_CONDITIONAL(MODEST_HAVE_EASYSETUP,test "x$have_easysetup" == "xtrue") -AM_CONDITIONAL(MODEST_HAVE_DBUS_API,test "x$have_dbusapi" == "xtrue") -AC_SUBST(MODEST_PLATFORM) - - + MAEMO_LAUNCHER_MODEST_LDFLAGS="-export-dynamic " +fi +AC_SUBST(MAEMO_LAUNCHER_MODEST_LDFLAGS) -# -# check for wpeditor or libwpeditor-plus (on maemo) -# -if test "x$with_platform" == "xmaemo"; then +dnl --------------- EDITOR ----------- PKG_CHECK_MODULES(MODEST_WPEDITOR,wpeditor,have_wpeditor=true,have_wpeditor=false) if test "x$have_wpeditor" == "xfalse"; then - PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false) + PKG_CHECK_MODULES(MODEST_WPEDITOR,libwpeditor-plus,have_libwpeditorplus=true,have_libwpeditorplus=false) if test "x$have_libwpeditorplus" == "xtrue"; then - wpeditor="libwpeditor-plus" - AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."]) + wpeditor="libwpeditor-plus" + AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBWPEDITOR_PLUS, 1, ["Whether libwpeditor-plus is used."]) else - AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed]) + AC_MSG_ERROR([you need to have either wpeditor or libwpeditor-plus installed]) fi else - wpeditor="wpeditor" - AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."]) + wpeditor="wpeditor" + AC_DEFINE_UNQUOTED(MODEST_HAVE_WPEDITOR, 1, ["Whether wpeditor is used."]) fi -fi - -# -# check libalarm -# -if test "x$with_platform" == "xmaemo"; then -PKG_CHECK_MODULES(MODEST_LIBALARM,libalarm,have_libalarm=true,have_libalarm=false) -if test "x$have_libalarm" == "xtrue"; then - libalarm="libalarm" - AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."]) - AC_SUBST(MODEST_LIBALARM_CFLAGS) - AC_SUBST(MODEST_LIBALARM_LIBS) -else - libalarm="" -fi +dnl --------------- LIBALARM ----------- +if test "x$with_platform" == "xmaemo"; then + PKG_CHECK_MODULES(MODEST_LIBALARM, alarm, have_libalarm=true,have_libalarm=false) + if test "x$have_libalarm" == "xtrue"; then + AC_DEFINE_UNQUOTED(MODEST_HAVE_LIBALARM, 1, ["Whether libalarm is used."]) + AC_SUBST(MODEST_LIBALARM_CFLAGS) + AC_SUBST(MODEST_LIBALARM_LIBS) + fi fi -# -# check for MCE -# -if test "x$with_platform" == "xmaemo"; then +dnl --------------- MCE ----------- +if test "x$with_platform" == "xmaemo"; then PKG_CHECK_MODULES(MODEST_MCE,mce,have_mce=true,have_mce=false) if test "x$have_mce" == "xtrue"; then - mce="mce" + mce="mce" AC_DEFINE_UNQUOTED(MODEST_HAVE_MCE, 1, ["Whether mce is used."]) AC_SUBST(MODEST_MCE_CFLAGS) AC_SUBST(MODEST_MCE_LIBS) @@ -189,12 +347,12 @@ else fi fi -# -# check for libconic; this is a trick to check whether we run -# on a 'real' maemo platform, or on, say, ubuntu embedded -# this determines whether we build with the non-hildon GTK+ -# -if test "x$with_platform" == "xmaemo"; then +dnl --------------- LIBCONIC ----------- +dnl check for libconic; this is a trick to check whether we run on a +dnl 'real' maemo platform, or on, say, ubuntu embedded. This determines +dnl whether we build with the non-hildon GTK+ + +if test "x$with_platform" == "xmaemo"; then PKG_CHECK_MODULES(MODEST_LIBCONIC,conic,have_libconic=true,have_libconic=false) if test "x$have_libconic" == "xtrue"; then AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_GTK,1,["Whether modest is being built with Hildon/Gtk"]) @@ -207,159 +365,96 @@ else fi fi -# -# check hildon-help (only for maemo) -# -if test "x$with_platform" == "xmaemo"; then - PKG_CHECK_MODULES(MODEST_HILDON_HELP,hildon-help,have_hildon_help=true,have_hildon_help=false) - if test "x$have_hildon_help" == "xfalse"; then - PKG_CHECK_MODULES(MODEST_HILDON_HELP,libossohelp,have_osso_help=true,have_osso_help=false) - if test "x$have_osso_help" == "xtrue"; then - helplib="osso-help" - AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_HELP, 1, ["Whether osso-help is used."]) - else - AC_MSG_ERROR([you need to have either osso-help or hildon-help installed]) - fi - else - helplib="hildon-help" - AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_HELP, 1, ["Whether hildon-help is used."]) - fi +if test "x$with_toolkit" != "xgtk"; then +MODEST_TOOLKIT_CFLAGS="$MODEST_TOOLKIT_CFLAGS -DMAEMO_CHANGES" fi - - -# -# check for the notification stuff (only maemo) -# -if test "x$with_platform" == "xmaemo"; then +dnl --------------- NOTIFICATION STUFF ----------- +if test "x$with_toolkit" != "xgtk"; then PKG_CHECK_MODULES(MODEST_HILDON_NOTIFY,hildon-notify libnotify,have_hildon_notify=true,have_hildon_notify=false) if test "x$have_hildon_notify" == "xtrue"; then - AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"]) + AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_NOTIFY, 1, ["Whether hildon-notify is available"]) fi fi - -# -# check for the uri/mime stuff -# -if test "x$with_platform" == "xmaemo"; then +dnl --------------- URI/MIME STUFF ----------- +if test "x$with_toolkit" != "xgtk"; then PKG_CHECK_MODULES(MODEST_HILDON_MIME,libhildonmime,have_hildonmime=true,have_hildonmime=false) - if test "x$have_hildonmime" == "xfalse"; then - PKG_CHECK_MODULES(MODEST_HILDON_MIME,libossomime,have_ossomime=true,have_ossomime=false) - if test "x$have_ossomime" == "xtrue"; then - mimelib="osso-mime" - AC_DEFINE_UNQUOTED(MODEST_HAVE_OSSO_MIME, 1, ["Whether osso-mime is used."]) - else - AC_MSG_ERROR([you need to have either osso-mime or hildon-mime installed]) - fi - else - mimelib="hildon-mime" - AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."]) + if test "x$have_hildonmime" == "xtrue"; then + mimelib="hildon-mime" + AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON_MIME, 1, ["Whether hildon-mime is used."]) fi fi -PKG_CHECK_MODULES(MODEST_MOZEMBED, libtinymailui-mozembed-1.0, have_mozembed=true, have_mozembed=false) -AC_ARG_ENABLE(mozembed, -AC_HELP_STRING([--enable-mozembed], - [Build with GtkMozEmbed (yes, no)]), -[case "${enableval}" in - yes) - if test x$have_mozembed = xfalse; then - AC_MSG_ERROR([building of GtkMozEmbed support requested and gtkmozembed not found]) - fi - use_mozembed=true - ;; - *) - use_mozembed=false - ;; -esac],[use_mozembed=false]) - -AM_CONDITIONAL(BUILD_MOZEMBED, test x$use_mozembed = xtrue) - -if test x$use_mozembed = xtrue; then - AC_DEFINE_UNQUOTED(MODEST_USE_MOZEMBED, 1, ["Whether we use GtkMozEmbed."]) -fi +dnl --------------- ADDRESSBOOK -------------- +if test "x$with_platform" == "xmaemo"; then + PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false) + + if test "x$have_abook" == "xtrue"; then + + abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1` + AC_SUBST(MODEST_ABOOK_CFLAGS) + AC_SUBST(MODEST_ABOOK_LIBS) + + modest_save_cflags="$CFLAGS" + modest_save_libs="$LIBS" + CFLAGS="$MODEST_ABOOK_CFLAGS" + LIBS="$MODEST_ABOOK_LIBS" + AC_CHECK_FUNCS(osso_abook_contact_chooser_set_visible_func) + AC_SUBST(HAVE_OSSO_ABOOK_CONTACT_CHOOSER_SET_VISIBLE_FUNC) + CFLAGS="$modest_save_cflags" + LIBS="$modest_save_libs" + + AC_DEFINE_UNQUOTED(OSSO_ABOOK_ENABLE_DEPRECATED, 1, ["use deprecated addressbook API"]) + AC_DEFINE_UNQUOTED(MODEST_ABOOK_API, $abook_api, ["the API version of osso-addressbook"]) + AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK, 1, ["whether we have osso-addressbook"]) + fi -#dnl wether we can and should build the -#dnl search plugin (on maemo) -if test "x$with_platform" == "xmaemo"; then -PKG_CHECK_MODULES(MODEST_OGS, libosso >= 0.8.5 libogs-1.2, have_ogs=true, have_ogs=false) -have_ogs_support=false -AC_ARG_ENABLE(ogs_support, -AC_HELP_STRING([--enable-ogs-support], - [Build with osso global search support (yes, no)]), -[case "${enableval}" in - yes) - if test x$have_ogs = xfalse; then - AC_MSG_ERROR([building of ogs support requested and libogs-1.2 not found]) - fi - ;; - *) - have_ogs_support=false - ;; -esac],[have_ogs_support=$have_ogs]) - -if test x$have_ogs_support = xtrue; then - AC_DEFINE_UNQUOTED(MODEST_HAVE_OGS, 1, ["Whether ogs is available."]) -fi + # Check the presence of the calendar widgets + PKG_CHECK_MODULES(MODEST_CALENDAR_WIDGETS,calendar-ui-widgets,have_calendar_widgets=true,have_calendar_widgets=false) + AC_SUBST(MODEST_CALENDAR_WIDGETS_CFLAGS) + AC_SUBST(MODEST_CALENDAR_WIDGETS_LIBS) + if test "x$have_calendar_widgets" == "xtrue"; then + AC_DEFINE_UNQUOTED(MODEST_USE_CALENDAR_WIDGETS, 1, ["Use the Calendar color widgets"]) + fi fi +AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue") +dnl --------------- LIBTIME -------------- +AC_CHECK_HEADERS([clockd/libtime.h], have_libtime=true, have_libtime=false) -# -# check the version of the widgets on maemo -# -if test "x$with_platform" == "xmaemo"; then -PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS, hildon-1 >= 0.9.9 hildon-fm-2, have_hildon1=true,have_hildon1=false) -if test "x$have_hildon1" == "xfalse"; then - PKG_CHECK_MODULES(MODEST_HILDON_WIDGETS, hildon-libs >= 0.12.0 hildon-fm, have_hildon0=true,have_hildon0=false) - if test "x$have_hildon0" == "xtrue"; then - AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON0_WIDGETS, 1, ["Whether hildon0 widgets are used."]) - else - AC_MSG_ERROR([hildon widgets and/or hildon-fm not found]) - fi +if test "x$have_libtime" == "xtrue"; then + AC_DEFINE_UNQUOTED(MODEST_USE_LIBTIME, 1, ["use libtime API"]) + MODEST_LIBTIME_LIBS=-ltime else - AC_DEFINE_UNQUOTED(MODEST_HAVE_HILDON1_WIDGETS, 1, ["Whether hildon1 widgets are used."]) + MODEST_LIBTIME_LIBS= fi -fi - +AC_SUBST(MODEST_LIBTIME_LIBS) +dnl --------------- IPHB -------------- +AC_CHECK_HEADERS([iphbd/libiphb.h], have_libiphb=true, have_libiphb=false) -# -# check the version of the addressbook on maemo -# -if test "x$with_platform" == "xmaemo"; then - PKG_CHECK_MODULES(MODEST_ABOOK,osso-addressbook-1.0,have_abook=true,have_abook=false) - AC_SUBST(MODEST_ABOOK_CFLAGS) - AC_SUBST(MODEST_ABOOK_LIBS) - - if test "x$have_abook" == "xtrue"; then - PKG_CHECK_MODULES(MODEST_ABOOK_OLD, osso-addressbook-1.0 < 2.0, have_old_abook=true,have_old_abook=false) - if test "x$have_old_abook" == "xtrue"; then - AC_DEFINE_UNQUOTED(MODEST_HAVE_OLD_ABOOK, 1, ["whether we have an old osso-addressbook"]) - fi - AC_DEFINE_UNQUOTED(MODEST_HAVE_ABOOK,1, ["whether we have osso-addressbook"]) - addressbook="osso-addressbook" - fi +if test "x$have_libiphb" == "xtrue"; then + AC_DEFINE_UNQUOTED(MODEST_USE_IPHB, 1, ["use IP Heartbeat API"]) + MODEST_LIBIPHB_LIBS=-liphb +else + MODEST_LIBIPHB_LIBS= fi +AC_SUBST(MODEST_LIBIPHB_LIBS) -# -# if we don't have an addressbook, use the dummy one -# -AM_CONDITIONAL(MODEST_USE_DUMMY_ADDRESS_BOOK,test "x$have_abook" != "xtrue") - +dnl --------------- GETTEXT -------------- +AM_GLIB_GNU_GETTEXT +IT_PROG_INTLTOOL([0.35.0]) -# gettext support -GETTEXT_PACKAGE=modest +GETTEXT_PACKAGE=modest AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", ["gettext package"]) -# -# settings for maemo platform -# -if test "x$with_platform" == "xmaemo"; then +dnl --------------- SETTINGS FOR MAEMO -------------- +if test "x$with_platform" == "xmaemo"; then # warnings are errors, but don't check format errors, because # it breaks with logical ids @@ -369,6 +464,9 @@ if test "x$with_platform" == "xmaemo"; then serviceentrydir=`$PKG_CONFIG dbus-glib-1 --variable=prefix`/share/dbus-1/services localedir=`$PKG_CONFIG osso-af-settings --variable=localedir` backupsettingsdir=/etc/osso-backup/applications + prebackupdir=/etc/osso-backup/pre-backup.d/ + restoredir=/etc/osso-backup/restore.d/always/ + ossocudscriptsdir=/etc/osso-cud-scripts pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir` icon_26x26dir=$datadir/icons/hicolor/26x26/hildon icon_34x34dir=$datadir/icons/hicolor/34x34/hildon @@ -385,6 +483,9 @@ if test "x$with_platform" == "xmaemo"; then AC_SUBST(desktopentrydir) AC_SUBST(serviceentrydir) AC_SUBST(backupsettingsdir) + AC_SUBST(prebackupdir) + AC_SUBST(restoredir) + AC_SUBST(ossocudscriptsdir) AC_SUBST(localedir) AC_SUBST(pixmapdir) AC_SUBST(icon_26x26dir) @@ -394,22 +495,12 @@ if test "x$with_platform" == "xmaemo"; then AC_SUBST(icon_scalabledir) AC_SUBST(pluginlibdir) AC_SUBST(plugindesktopentrydir) - else - # gnome frontend - 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) - AC_SUBST(MODEST_LIBTINYMAIL_GNOME_DESKTOP_CFLAGS) - AC_SUBST(MODEST_LIBTINYMAIL_GNOME_DESKTOP_LIBS) - AC_DEFINE_UNQUOTED(MODEST_PLATFORM_GNOME, 1, ["Whether modest is being built for the GNOME platform."]) - - # no dbus api for gnome - dbus_api="" - AC_SUBST(dbus_api) - + desktopentrydir=$datadir/applications + AC_SUBST(desktopentrydir) fi - -dnl ## setup the testing framework (ie., make check) +dnl --------------- TESTING ------------------- build_tests=false AC_ARG_ENABLE(tests, AC_HELP_STRING([--enable-tests], @@ -421,16 +512,11 @@ AC_HELP_STRING([--enable-tests], esac],[build_tests=false]) AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xtrue) - - -dnl ## is the check package installed? if test x$build_tests = xtrue; then PKG_CHECK_MODULES(CHECK, check >= 0.9.4 glib-2.0) fi - - -dnl ## do we want documentation (gtk-doc) +dnl ------------ TESTING: GTK-DOC ---------- build_docs=false AC_ARG_ENABLE(docs, AC_HELP_STRING([--enable-docs], @@ -442,30 +528,25 @@ AC_HELP_STRING([--enable-docs], esac],[build_docs=false]) AM_CONDITIONAL(BUILD_DOCS, test x$build_docs = xtrue) -dnl ## gtk-doc GTK_DOC_CHECK([1.0]) -dnl Intltool utility programs -#AC_PROG_INTLTOOL([0.33.0],[no-xml]) - +dnl ---------------- OUTPUT -------------- AC_OUTPUT([ po/Makefile.in Makefile man/Makefile src/Makefile +src/modest-plugin-1.0.pc src/dbus_api/Makefile -src/gnome/Makefile -src/maemo/Makefile -src/maemo/easysetup/Makefile +src/gtk/Makefile +src/hildon2/Makefile src/widgets/Makefile docs/Makefile docs/reference/Makefile tests/Makefile tests/dbus_api/Makefile -src/maemo/modest.desktop -src/maemo/com.nokia.modest.service -libmodest-dbus-client/Makefile -libmodest-dbus-client/libmodest-dbus-client-1.0.pc +src/hildon2/modest.desktop +src/hildon2/com.nokia.modest.service ]) @@ -473,6 +554,7 @@ echo echo "modest configure results" echo "-----------------------------------" echo "Platform : $with_platform" +echo "Toolkit : $with_toolkit" echo "Prefix : ${prefix}" echo "Build tests : $build_tests" echo "Build docs : $build_docs" @@ -482,14 +564,17 @@ if test "x$with_platform" == "xmaemo"; then echo "Maemo Launcher : $maemo_launcher" echo "Editor lib : $wpeditor" echo "Addressbook : $have_abook" - echo "Help lib : $helplib" echo "libconic support : $have_libconic" echo "Alarm : $have_libalarm" echo "MCE : $have_mce" - echo "Hildon-Notify : $have_hildon_notify" - echo "LibOGS support : $have_ogs_support" - echo "MozEmbed support : $use_mozembed" -fi + echo "Hildon-Notify : $have_hildon_notify" + echo "Calendar widgets : $have_calendar_widgets" +fi + +if [ $gtk_html_found = "true" ]; then + echo "GtkHTML version : $gtk_html_version" +fi +echo "Libtime : $have_libtime" echo "CFLAGS : $CFLAGS" echo "Debug version : $with_debug"