diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9e2014180..b69ee09f1 100644 --- a/configure.ac +++ b/configure.ac @@ -211,6 +211,24 @@ AC_DEFINE(EMPATHY_GOA_PROVIDER, "org.gnome.OnlineAccounts", [Name of provider for accounts imported from GOA]) # ----------------------------------------------------------- +# Build empathy-av? +# ----------------------------------------------------------- +AC_ARG_ENABLE(empathy-av, + AS_HELP_STRING([--enable-empathy-av=@<:@no/yes@:>@], + [build empathy-av (legacy call UI)]),, + [enable_empathy_av=no]) +if test "x$enable_empathy_av" != "xno" ; then + PKG_CHECK_MODULES(EMPATHY_AV, + [ + farstream-0.1 + telepathy-farsight >= $TELEPATHY_FARSIGHT_REQUIRED + ]) + AC_DEFINE(HAVE_EMPATHY_AV, 1, [Define if you have StreamedMedia channel support]) + have_empathy_av=yes +fi +AM_CONDITIONAL(HAVE_EMPATHY_AV, test "x$have_empathy_av" = "xyes") + +# ----------------------------------------------------------- # Call support in tp-logger # ----------------------------------------------------------- AC_ARG_ENABLE(call-logs, @@ -669,4 +687,5 @@ Configure summary: GOA MC plugin...............: ${have_goa} Salut E-D-S support.........: ${with_eds} Exp. Call log support.......: ${have_call_logs} + empathy-av (legacy).........: ${enable_empathy_av} " |