diff options
author | Benjamin Pineau <ben.pineau@gmail.com> | 2005-12-16 10:12:49 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-12-16 10:12:49 +0000 |
commit | 84f4cacb6f9cef32811f764cbc5b804271afe3c0 (patch) | |
tree | 510e6a3f6cfedd981cc4d6fac0e8535b300272a5 /gst | |
parent | 4d5ea938c248930c52a32e5021db6691d8432ce2 (diff) |
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)
Diffstat (limited to 'gst')
-rw-r--r-- | gst/rtsp/rtspconnection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/rtsp/rtspconnection.c b/gst/rtsp/rtspconnection.c index 248a4a2b..ae39df44 100644 --- a/gst/rtsp/rtspconnection.c +++ b/gst/rtsp/rtspconnection.c @@ -23,8 +23,9 @@ #include <stdlib.h> #include <string.h> #include <netdb.h> -#include <arpa/inet.h> #include <sys/socket.h> +#include <netinet/in.h> +#include <arpa/inet.h> #include "rtspconnection.h" |