]> git.sesse.net Git - vlc/commitdiff
Fix missing declaration (supposedly crash on amd64)
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 5 Oct 2008 13:11:00 +0000 (16:11 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 5 Oct 2008 13:43:37 +0000 (16:43 +0300)
src/network/io.c
src/network/tcp.c

index a463569356247deed7cf23a43c7b4e7130baec2e..fd01cf5cafe0534216d491aa23fded43d94c782d 100644 (file)
@@ -74,6 +74,8 @@
 # define SOL_DCCP 269
 #endif
 
+#include "libvlc.h" /* vlc_object_waitpipe */
+
 extern int rootwrap_bind (int family, int socktype, int protocol,
                           const struct sockaddr *addr, size_t alen);
 
index e027e277be6106fb2751a1fb344fe8b23bdd8dbc..fe273759411bebe619beb5e02c36fd9779a5de73 100644 (file)
@@ -58,6 +58,8 @@
 #   define ETIMEDOUT WSAETIMEDOUT
 #endif
 
+#include "libvlc.h" /* vlc_object_waitpipe */
+
 static int SocksNegotiate( vlc_object_t *, int fd, int i_socks_version,
                            const char *psz_user, const char *psz_passwd );
 static int SocksHandshakeTCP( vlc_object_t *,