X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=configure.ac;h=335b527bf2318d779c6db873f9f5abda3db3ec1d;hp=64929375857e9a7b3444e26e43e66fa5108ec021;hb=49e27ba20435e1ea2f34e8086605f9c98f5ca65f;hpb=cdbab669714f015b98fbce83b8e147df6ab27e82 diff --git a/configure.ac b/configure.ac index 6492937..335b527 100644 --- a/configure.ac +++ b/configure.ac @@ -144,6 +144,7 @@ if test "$with_platform" = "maemo"; then elif test "$with_platform" = "gnome"; then MODEST_PLUGIN_DEFINES=" -DMODEST_PLATFORM_GNOME" fi +AC_SUBST(MODEST_PLUGIN_DEFINES) # # check the widgets library @@ -159,10 +160,6 @@ if test "$have_hildon1" = "true"; then hildonpkgs="hildon-1 hildon-fm-2" detected_toolkit=hildon1 echo "DETECTED HILDON 1 $have_hildon2." - if test "$have_hildon2" = "true"; then - echo "DETECTED HILDON 2 $have_hildon2." - detected_toolkit=hildon2 - fi else hildonpkgs="hildon-libs hildon-fm" detected_toolkit=hildon1 @@ -180,6 +177,21 @@ else fi fi +dnl --------------- HILDON & PLUGIN PKGS ----------- +pluginpkgs=$hildonpkgs +echo "Plugin Packages $pluginpkgs" +AC_SUBST(pluginpkgs) + +# Plugin packages must not include libcanberra and libprofile +if test "$have_hildon2" = "true"; then + echo "DETECTED HILDON 2 $have_hildon2." + detected_toolkit=hildon2 + hildonpkgs="$hildonpkgs libcanberra profile" + echo "HILDON 2 PACKAGES $hildonpkgs" +fi +AC_SUBST(hildonpkgs) + +dnl --------------- HILDON API ------------ hildon_api= if test "$have_hildon0" = "true"; then hildon_api=0 @@ -217,10 +229,6 @@ elif test "$with_toolkit" = "gtk"; then MODEST_PLUGIN_DEFINES="$MODEST_PLUGIN_DEFINES -DMODEST_TOOLKIT_GNOME" fi -AC_SUBST(hildonpkgs) -AC_SUBST(MODEST_PLUGIN_DEFINES) - - dnl Whether to use maemo-launcher or not AC_ARG_ENABLE([maemo-launcher], [AS_HELP_STRING([--enable-maemo-launcher], @@ -445,11 +453,18 @@ fi # if test "x$with_platform" == "xmaemo"; then PKG_CHECK_MODULES(MODEST_ABOOK,osso-addressbook-1.0,have_abook=true,have_abook=false) + abook_api=`$PKG_CONFIG --modversion osso-addressbook-1.0 | cut -d. -f1` AC_SUBST(MODEST_ABOOK_CFLAGS) AC_SUBST(MODEST_ABOOK_LIBS) + if test "x$have_abook" == "xfalse"; then + PKG_CHECK_MODULES(MODEST_ABOOK, libosso-abook-1.0,have_abook=true,have_abook=false) + abook_api=`$PKG_CONFIG --modversion libosso-abook-1.0 | cut -d. -f1` + AC_SUBST(MODEST_ABOOK_CFLAGS) + AC_SUBST(MODEST_ABOOK_LIBE) + fi + if test "x$have_abook" == "xtrue"; then - abook_api=`$PKG_CONFIG --modversion osso-addressbook-1.0 | cut -d. -f1` 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"])