mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
Fixed header files so that rtp builds on Solaris
Original commit message from CVS: Fixed header files so that rtp builds on Solaris
This commit is contained in:
parent
65d0e5af3d
commit
08962fa4f4
2 changed files with 11 additions and 7 deletions
|
@ -23,15 +23,13 @@
|
|||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "rtp-packet.h"
|
||||
|
||||
#include <glib.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <netinet/in.h>
|
||||
#include <glib.h>
|
||||
|
||||
#include "rtp-packet.h"
|
||||
|
||||
Rtp_Packet
|
||||
rtp_packet_new_take_data(gpointer data, guint data_len)
|
||||
|
|
|
@ -22,8 +22,14 @@
|
|||
#ifndef _RTP_PACKET_H
|
||||
#define _RTP_PACKET_H 1
|
||||
|
||||
#include <glib.h>
|
||||
#include <netinet/in.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <glib.h>
|
||||
|
||||
#ifdef __sun
|
||||
#include <sys/uio.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
Loading…
Reference in a new issue