diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-01-03 13:20:57 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-01-03 13:20:57 +0000 |
commit | 156d6766dc4dd1fb681280ef5d332c7a1602a147 (patch) | |
tree | bcc8875633c7720f97d4731f3b168f488d7d032a | |
parent | eeb1636589e5439af728f624f0a6711460460869 (diff) |
gst/rtp/rtp-packet.c: Add sys/types.h include, since OS X doesn't define in_addr_t in netinet/in.h, like it does on L...
Original commit message from CVS:
2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
* gst/rtp/rtp-packet.c:
Add sys/types.h include, since OS X doesn't define in_addr_t
in netinet/in.h, like it does on Linux (see #129600).
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/rtp/rtp-packet.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net> + + * gst/rtp/rtp-packet.c: + Add sys/types.h include, since OS X doesn't define in_addr_t + in netinet/in.h, like it does on Linux (see #129600). + 2004-01-03 Thomas Canty <tommydal@optushome.com.au> reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net> diff --git a/gst/rtp/rtp-packet.c b/gst/rtp/rtp-packet.c index 0564fd94..b8d95a62 100644 --- a/gst/rtp/rtp-packet.c +++ b/gst/rtp/rtp-packet.c @@ -26,6 +26,8 @@ #include <stdlib.h> #include <string.h> #include <errno.h> +/* On Panther, netinet/in.h doesn't define in_addr_t */ +#include <sys/types.h> #include <netinet/in.h> #include <glib.h> |