| 772 dnl ####################################################################### |
772 dnl ####################################################################### |
| 773 AC_ARG_ENABLE(farsight, |
773 AC_ARG_ENABLE(farsight, |
| 774 [AC_HELP_STRING([--disable-farsight], [compile without farsight support])], |
774 [AC_HELP_STRING([--disable-farsight], [compile without farsight support])], |
| 775 enable_farsight="$enableval", enable_farsight="yes") |
775 enable_farsight="$enableval", enable_farsight="yes") |
| 776 if test "x$enable_farsight" != "xno"; then |
776 if test "x$enable_farsight" != "xno"; then |
| 777 PKG_CHECK_MODULES(FARSIGHT, [farsight2-0.10 >= 0.0.8], [ |
777 PKG_CHECK_MODULES(FARSIGHT, [farsight2-0.10 >= 0.0.9], [ |
| 778 AC_DEFINE(USE_FARSIGHT, 1, [Use Farsight for voice and video]) |
778 AC_DEFINE(USE_FARSIGHT, 1, [Use Farsight for voice and video]) |
| 779 AC_SUBST(FARSIGHT_CFLAGS) |
779 AC_SUBST(FARSIGHT_CFLAGS) |
| 780 AC_SUBST(FARSIGHT_LIBS) |
780 AC_SUBST(FARSIGHT_LIBS) |
| 781 ], [ |
781 ], [ |
| 782 enable_farsight="no" |
782 enable_farsight="no" |