diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 14:53:20 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 14:53:20 +0000 |
commit | 08b37bf32715e2c7d417f401898acfce23195437 (patch) | |
tree | 8756923e4e33911a3331820bc85dba8aac7f2d0a | |
parent | 279760c08262a3134d1c78ec0e6c2f9ff06fc8ed (diff) |
rename defines too, so that they look like the others (say naming convention)
Original commit message from CVS:
rename defines too, so that they look like the others (say naming convention)
-rw-r--r-- | gst/tcp/gsttcpclientsrc.c | 2 | ||||
-rw-r--r-- | gst/tcp/gsttcpserversink.c | 2 | ||||
-rw-r--r-- | gst/tcp/gsttcpserversrc.c | 2 | ||||
-rw-r--r-- | m4/gst-fionread.m4 | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/gst/tcp/gsttcpclientsrc.c b/gst/tcp/gsttcpclientsrc.c index 11c65b6e..7d6253f5 100644 --- a/gst/tcp/gsttcpclientsrc.c +++ b/gst/tcp/gsttcpclientsrc.c @@ -33,7 +33,7 @@ #include <arpa/inet.h> #include <sys/ioctl.h> -#ifdef FIONREAD_IN_SYS_FILIO +#ifdef HAVE_FIONREAD_IN_SYS_FILIO #include <sys/filio.h> #endif diff --git a/gst/tcp/gsttcpserversink.c b/gst/tcp/gsttcpserversink.c index 87455b67..266c04bf 100644 --- a/gst/tcp/gsttcpserversink.c +++ b/gst/tcp/gsttcpserversink.c @@ -25,7 +25,7 @@ #include <sys/ioctl.h> -#ifdef FIONREAD_IN_SYS_FILIO +#ifdef HAVE_FIONREAD_IN_SYS_FILIO #include <sys/filio.h> #endif diff --git a/gst/tcp/gsttcpserversrc.c b/gst/tcp/gsttcpserversrc.c index dc8cf0d1..68421ee6 100644 --- a/gst/tcp/gsttcpserversrc.c +++ b/gst/tcp/gsttcpserversrc.c @@ -29,7 +29,7 @@ #include <unistd.h> #include <sys/ioctl.h> -#ifdef FIONREAD_IN_SYS_FILIO +#ifdef HAVE_FIONREAD_IN_SYS_FILIO #include <sys/filio.h> #endif diff --git a/m4/gst-fionread.m4 b/m4/gst-fionread.m4 index b9649875..dff19df9 100644 --- a/m4/gst-fionread.m4 +++ b/m4/gst-fionread.m4 @@ -15,7 +15,7 @@ if ( x ) AC_MSG_RESULT($GST_FIONREAD_IN_SYS_IOCTL) if test "$GST_FIONREAD_IN_SYS_IOCTL" = "yes"; then - AC_DEFINE([FIONREAD_IN_SYS_IOCTL], 1, [FIONREAD ioctl found in sys/ioclt.h]) + AC_DEFINE([HAVE_FIONREAD_IN_SYS_IOCTL], 1, [FIONREAD ioctl found in sys/ioclt.h]) else @@ -34,7 +34,7 @@ if ( x ) AC_MSG_RESULT($GST_FIONREAD_IN_SYS_FILIO) if test "$GST_FIONREAD_IN_SYS_FILIO" = "yes"; then - AC_DEFINE([FIONREAD_IN_SYS_FILIO], 1, [FIONREAD ioctl found in sys/filio.h]) + AC_DEFINE([HAVE_FIONREAD_IN_SYS_FILIO], 1, [FIONREAD ioctl found in sys/filio.h]) fi fi |