mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 15:12:58 +00:00
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).
This commit is contained in:
parent
eeb1636589
commit
156d6766dc
2 changed files with 8 additions and 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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue