- change sunaudio category to Sink/Audio

Original commit message from CVS:
- change sunaudio category to Sink/Audio
- change HAVE_FIONREAD macro to GST_CHECK_FIONREAD
- add conditional include for FIONREAD ioctl on more files
This commit is contained in:
Stéphane Loeuillet 2004-05-20 19:43:25 +00:00
parent 322db67058
commit 970e90054a
4 changed files with 11 additions and 2 deletions

View file

@ -96,7 +96,7 @@ if test "x$GST_CVS" = "xyes"; then
fi
dnl Check for FIONREAD ioctl declaration :
HAVE_FIONREAD()
GST_CHECK_FIONREAD()
dnl ############################################
dnl # Super Duper options for plug-in building #

View file

@ -24,6 +24,11 @@
#include <gst/gst-i18n-plugin.h>
#include <sys/ioctl.h>
#ifdef FIONREAD_IN_SYS_FILIO
#include <sys/filio.h>
#endif
#include "gsttcpserversink.h"
#define TCP_DEFAULT_HOST "127.0.0.1"

View file

@ -29,6 +29,10 @@
#include <unistd.h>
#include <sys/ioctl.h>
#ifdef FIONREAD_IN_SYS_FILIO
#include <sys/filio.h>
#endif
GST_DEBUG_CATEGORY (tcpserversrc_debug);
#define GST_CAT_DEFAULT tcpserversrc_debug

View file

@ -1,4 +1,4 @@
AC_DEFUN([HAVE_FIONREAD], [
AC_DEFUN([GST_CHECK_FIONREAD], [
AC_MSG_CHECKING(for FIONREAD in sys/ioctl.h)
AC_CACHE_VAL(GST_FIONREAD_IN_SYS_IOCTL, [