comparison configure.ac @ 22427:eab5bc54e163

Tell gstreamer not to fork; remove the SIGCHLD -> SIGALRM hack, which made Pidgin unrunnable on non-Linux platforms. This involves depending on gstreamer >= 0.10.10, which has been around since 2006-09-14. This isn't a problem, right? Fixes #1496.
author Will Thompson <will.thompson@collabora.co.uk>
date Thu, 06 Mar 2008 11:34:11 +0000
parents a6a24fabf855
children 2c757739ee77 efaecb71baad
comparison
equal deleted inserted replaced
22426:5762dcb1909c 22427:eab5bc54e163
660 dnl ####################################################################### 660 dnl #######################################################################
661 AC_ARG_ENABLE(gstreamer, 661 AC_ARG_ENABLE(gstreamer,
662 [AC_HELP_STRING([--disable-gstreamer], [compile without GStreamer audio support])], 662 [AC_HELP_STRING([--disable-gstreamer], [compile without GStreamer audio support])],
663 enable_gst="$enableval", enable_gst="yes") 663 enable_gst="$enableval", enable_gst="yes")
664 if test "x$enable_gst" != "xno"; then 664 if test "x$enable_gst" != "xno"; then
665 PKG_CHECK_MODULES(GSTREAMER, [gstreamer-0.10], [ 665 PKG_CHECK_MODULES(GSTREAMER, [gstreamer-0.10 >= 0.10.10], [
666 AC_DEFINE(USE_GSTREAMER, 1, [Use GStreamer for playing sounds]) 666 AC_DEFINE(USE_GSTREAMER, 1, [Use GStreamer for playing sounds])
667 AC_SUBST(GSTREAMER_CFLAGS) 667 AC_SUBST(GSTREAMER_CFLAGS)
668 AC_SUBST(GSTREAMER_LIBS) 668 AC_SUBST(GSTREAMER_LIBS)
669 ], [ 669 ], [
670 AC_MSG_RESULT(no) 670 AC_MSG_RESULT(no)