mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
gst/rtsp/rtspconnection.c: Add <netinet/in.h> include and move <arpa/inet.h> include to make things work on OpenBSD a...
Original commit message from CVS: * gst/rtsp/rtspconnection.c: Add <netinet/in.h> include and move <arpa/inet.h> include to make things work on OpenBSD as well (fixes #323717; patch by: Benjamin Pineau)
This commit is contained in:
parent
4d5ea938c2
commit
84f4cacb6f
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/rtsp/rtspconnection.c:
|
||||||
|
Add <netinet/in.h> include and move <arpa/inet.h> include
|
||||||
|
to make things work on OpenBSD as well (fixes #323717;
|
||||||
|
patch by: Benjamin Pineau)
|
||||||
|
|
||||||
2005-12-14 Edgard Lima <edgard.lima@indt.org.br>
|
2005-12-14 Edgard Lima <edgard.lima@indt.org.br>
|
||||||
|
|
||||||
* gst/rtp/gstrtpspeexdepay.c:
|
* gst/rtp/gstrtpspeexdepay.c:
|
||||||
|
|
|
@ -23,8 +23,9 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
|
||||||
#include "rtspconnection.h"
|
#include "rtspconnection.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue