mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
multiudpsink: Add missing socket.h include
Without this include, macro like SO_BINDTODEVICE is not visible and associated feature gets out-compiled. This also affects the support for SO_SNDBUF.
This commit is contained in:
parent
152b002658
commit
2c3c1072f7
1 changed files with 4 additions and 0 deletions
|
@ -37,6 +37,10 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_SYS_SOCKET_H
|
||||
#include <sys/socket.h>
|
||||
#endif
|
||||
|
||||
#include "gst/net/net.h"
|
||||
#include "gst/glib-compat-private.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue