~ubuntu-branches/ubuntu/oneiric/empathy/oneiric-security

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-09-07 10:49:23 UTC
  • mfrom: (1.1.77 upstream)
  • Revision ID: package-import@ubuntu.com-20110907104923-lc7tjj9sxr7knty7
Tags: 3.1.91-0ubuntu1
* New upstream version
  - Add a MC GOA plugin (Danielle Madeley, Guillaume, Desmottes)
  - Shouldn't allow to start video call with audio only contact
    (Emilio Pozuelo Monfort)
  - build: fix typo in configure summary (Cosimo Cecchi)
  - empathy crashed with SIGSEGV in
    folks_persona_store_get_can_alias_personas() (Guillaume Desmottes)
    (LP: #831809)
  - Search field isn't at the right end of the History window toolbar
    (Guillaume Desmottes)
  - Chat and Call icons don't match in History window
    (Emilio Pozuelo Monfort)
  - EmpathyIndividualStore segfaults if contact cannot be obtained by
    individual (Cosimo Alfarano) (LP: #831714)
  - log-window: add the "raised" style class to the account chooser
    (Cosimo Cecchi)
  - primary-toolbar style class has been removed (Cosimo Cecchi)
  - empathy-accounts.desktop should not get installed if no control center
    embedding (Guillaume Desmottes)
* debian/control:
  - add libgoa-1.0-dev and libmission-control-plugins-dev build-deps for
    new goa support
* debian/patches/41_unity_launcher_progress.patch:
  - refresh for new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
m4_define([empathy_major_version], [3])
5
5
m4_define([empathy_minor_version], [1])
6
 
m4_define([empathy_micro_version], [90])
 
6
m4_define([empathy_micro_version], [91])
7
7
m4_define([empathy_nano_version], [0])
8
8
 
9
9
dnl Display the nano_version only if it's not '0'
169
169
# Pkg-Config dependency checks
170
170
# -----------------------------------------------------------
171
171
 
 
172
AC_CHECK_LIBM
 
173
AC_SUBST(LIBM)
 
174
 
172
175
PKG_CHECK_MODULES(EMPATHY,
173
176
[
174
177
   dbus-glib-1
609
612
AM_CONDITIONAL(HAVE_NST, test "x$have_nst" = "xyes")
610
613
 
611
614
# -----------------------------------------------------------
 
615
# goa-mc-plugin
 
616
# -----------------------------------------------------------
 
617
AC_ARG_ENABLE(goa,
 
618
              AS_HELP_STRING([--enable-goa=@<:@no/yes/auto@:>@],
 
619
                             [build GOA MC plugin]), ,
 
620
                             enable_goa=auto)
 
621
 
 
622
if test "x$enable_goa" != "xno"; then
 
623
   PKG_CHECK_MODULES(GOA,
 
624
    [
 
625
       mission-control-plugins
 
626
       goa-1.0
 
627
    ], have_goa="yes", have_goa="no")
 
628
 
 
629
   AC_MSG_CHECKING([Mission Control plugins dir])
 
630
   MISSION_CONTROL_PLUGINS_DIR=`pkg-config --variable=plugindir mission-control-plugins`
 
631
 
 
632
   AC_SUBST(MISSION_CONTROL_PLUGINS_DIR)
 
633
else
 
634
   have_goa=no
 
635
fi
 
636
 
 
637
if test "x$enable_goa" = "xyes" -a "x$have_goa" != "xyes"; then
 
638
   AC_MSG_ERROR([Could not find GOA dependencies.])
 
639
fi
 
640
 
 
641
AM_CONDITIONAL(HAVE_GOA, test "x$have_goa" = "xyes")
 
642
 
 
643
# -----------------------------------------------------------
612
644
# new, single-window control center
613
645
# -----------------------------------------------------------
614
646
AC_ARG_ENABLE(control_center_embedding,
693
725
   libempathy-gtk/Makefile
694
726
   src/Makefile
695
727
   nautilus-sendto-plugin/Makefile
 
728
   goa-mc-plugin/Makefile
696
729
   help/Makefile
697
730
   tests/Makefile
698
731
   tests/interactive/Makefile
714
747
        Spell checking (enchant)....:  ${have_enchant}
715
748
        Display maps (libchamplain).:  ${have_libchamplain}
716
749
        Location awareness (Geoclue):  ${have_geoclue}
717
 
        Geocode support (Geoclue)...:  ${have_geocode}
 
750
        Geocode support (Geocode)...:  ${have_geocode}
718
751
        Meego widgets...............:  ${have_meego}
719
752
        Unity panel support (unity).:  ${have_unity}
720
753
        Control center embedding....:  ${have_control_center_embedding}
727
760
 
728
761
    Extras:
729
762
        Nautilus-sendto plugin......:  ${have_nst}
 
763
        GOA MC plugin...............:  ${have_goa}
730
764
        Salut E-D-S support.........:  ${with_eds}
731
765
        Exp. Call channel handler...:  ${have_call}
732
766
        Exp. Call log support.......:  ${have_call_logs}