diff options
author | Sean Egan <seanegan@pidgin.im> | 2007-08-28 01:02:01 +0000 |
---|---|---|
committer | Sean Egan <seanegan@pidgin.im> | 2007-08-28 01:02:01 +0000 |
commit | 81fa1bfd60db0185bfdf4608f17cef77b43b2695 (patch) | |
tree | d7dedae3dc646b0fb755062430a4111a9f1deb0a | |
parent | 05009660fb66670ab9713b4436af881156efe133 (diff) | |
download | pidgin-81fa1bfd60db0185bfdf4608f17cef77b43b2695.tar.gz |
Add Farsight to configure.ac
-rw-r--r-- | configure.ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1de5e8ac45..281ce6830d 100644 --- a/configure.ac +++ b/configure.ac @@ -613,6 +613,23 @@ if test "x$enable_gst" != "xno"; then fi dnl ####################################################################### +dnl # Check for Farsight +dnl ####################################################################### +AC_ARG_ENABLE(farsight, + [AC_HELP_STRING([--disable-vv], [compile without voice and video support])], + enable_farsight="$enableval", enable_farsight="yes") +if test "x$enable_farsight" != "xno"; then + PKG_CHECK_MODULES(FARSIGHT, [farsight-0.1], [ + AC_DEFINE(USE_FARSIGHT, 1, [Use Farsight for voice and video]) + AC_SUBST(FARSIGHT_CFLAGS) + AC_SUBST(FARSIGHT_LIBS) + ], [ + AC_MSG_RESULT(no) + enable_farsight="no" + ]) +fi + +dnl ####################################################################### dnl # Check for Meanwhile headers (for Sametime) dnl ####################################################################### PKG_CHECK_MODULES(MEANWHILE, [meanwhile >= 1.0.0 meanwhile < 2.0.0], [ @@ -2263,6 +2280,7 @@ echo Protocols to build dynamically : $DYNAMIC_PRPLS echo Protocols to link statically.. : $STATIC_PRPLS echo echo Build with GStreamer support.. : $enable_gst +echo Build with voice and video.... : $enable_farsight echo Build with D-Bus support...... : $enable_dbus if test "x$enable_dbus" = "xyes" ; then eval eval echo D-Bus services directory...... : $DBUS_SERVICES_DIR |