From d818fb174ba76356ea5f8fb9677a2d61fac41b23 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Fri, 23 Jan 2009 10:04:39 +0100 Subject: Fix linking on Solaris. Fixes bug #568809. Check for the socket library which is needed for socket() on Solaris. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6b9d85e5..0f11fb36 100644 --- a/configure.ac +++ b/configure.ac @@ -318,6 +318,9 @@ AG_GST_CHECK_PLUGIN(videomixer) AG_GST_CHECK_PLUGIN(wavenc) AG_GST_CHECK_PLUGIN(wavparse) +dnl *** checks for socket and nsl libraries *** +AC_CHECK_FUNC(socket,,[AC_CHECK_LIB(socket,socket)]) + dnl disable gst plugins we might not be able to build on this dnl platform: udp and rtsp (ugly but minimally invasive) dnl FIXME: maybe move to sys -- cgit