comparison configure.ac @ 23802:5f4807116f8c

Require gstreamer-plugins-base-0.10 for compiling with voice and video support. Also removed duplicate results on failures of checking for Farsight and GStreamer-properties.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Tue, 27 May 2008 04:30:36 +0000
parents 4b9b265a8100
children 3f835618356a 7d2e5f57dbca
comparison
equal deleted inserted replaced
23801:43b3b9ff6028 23802:5f4807116f8c
726 dnl ####################################################################### 726 dnl #######################################################################
727 AC_ARG_ENABLE(vv, 727 AC_ARG_ENABLE(vv,
728 [AC_HELP_STRING([--disable-vv], [compile without voice and video support])], 728 [AC_HELP_STRING([--disable-vv], [compile without voice and video support])],
729 enable_farsight="$enableval", enable_farsight="yes") 729 enable_farsight="$enableval", enable_farsight="yes")
730 if test "x$enable_farsight" != "xno"; then 730 if test "x$enable_farsight" != "xno"; then
731 PKG_CHECK_MODULES(FARSIGHT, [farsight2-0.10], [ 731 PKG_CHECK_MODULES(FARSIGHT, [farsight2-0.10 gstreamer-0.10 gstreamer-plugins-base-0.10 libxml-2.0], [
732 AC_DEFINE(USE_FARSIGHT, 1, [Use Farsight for voice and video]) 732 AC_DEFINE(USE_FARSIGHT, 1, [Use Farsight for voice and video])
733 AC_SUBST(FARSIGHT_CFLAGS) 733 AC_SUBST(FARSIGHT_CFLAGS)
734 AC_SUBST(FARSIGHT_LIBS) 734 AC_SUBST(FARSIGHT_LIBS)
735 ], [ 735 ], [
736 AC_MSG_RESULT(no)
737 enable_farsight="no" 736 enable_farsight="no"
738 ]) 737 ])
739 fi 738 fi
740 739
741 740
753 GSTPROPS_LIBS="$GSTPROPS_LIBS -lgstinterfaces-0.10" 752 GSTPROPS_LIBS="$GSTPROPS_LIBS -lgstinterfaces-0.10"
754 AC_DEFINE(USE_GSTPROPS, 1, [Use GStreamer property probe for finding devices]) 753 AC_DEFINE(USE_GSTPROPS, 1, [Use GStreamer property probe for finding devices])
755 AC_SUBST(GSTPROPS_LIBS) 754 AC_SUBST(GSTPROPS_LIBS)
756 AC_SUBST(GSTPROPS_CFLAGS) 755 AC_SUBST(GSTPROPS_CFLAGS)
757 ], [ 756 ], [
758 AC_MSG_RESULT(no)
759 enable_gstprops="no" 757 enable_gstprops="no"
760 ]) 758 ])
761 fi 759 fi
762 760
763 761