]> git.sesse.net Git - vlc/commitdiff
* modules/access/*: Fixed compilation problems with "struct timeval".
authorChristophe Massiot <massiot@videolan.org>
Tue, 4 Feb 2003 10:07:40 +0000 (10:07 +0000)
committerChristophe Massiot <massiot@videolan.org>
Tue, 4 Feb 2003 10:07:40 +0000 (10:07 +0000)
modules/access/ftp.c
modules/access/http.c
modules/access/udp.c

index c69e2d2da3ae538e495bc734fb96b6ddf59bca09..cf79b155c338c12f6c9b91473bea78f6a8402a25 100644 (file)
@@ -2,7 +2,7 @@
  * ftp.c:
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: ftp.c,v 1.5 2002/12/31 01:54:35 massiot Exp $
+ * $Id: ftp.c,v 1.6 2003/02/04 10:07:40 massiot Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
 #include <vlc/vlc.h>
 #include <vlc/input.h>
 
+#ifdef HAVE_SYS_TIME_H
+#    include <sys/time.h>
+#endif
+
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
 #elif defined( _MSC_VER ) && defined( _WIN32 )
index 19f94ab9dffae004ac71efc520d7f5c0db0d52ba..f20e765e2ba66a6e92b707b29792d74242f479dc 100644 (file)
@@ -2,7 +2,7 @@
  * http.c: HTTP access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: http.c,v 1.20 2002/12/31 01:54:35 massiot Exp $
+ * $Id: http.c,v 1.21 2003/02/04 10:07:40 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
 #   include <fcntl.h>
 #endif
 
+#ifdef HAVE_SYS_TIME_H
+#    include <sys/time.h>
+#endif
+
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
 #elif defined( _MSC_VER ) && defined( _WIN32 ) && !defined( UNDER_CE )
index 99b4a06a1623ca0e0fc3945e2d58e2d35090ea2a..b7801b854fc719699a1ca9adf780409406a21cef 100644 (file)
@@ -2,7 +2,7 @@
  * udp.c: raw UDP & RTP access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: udp.c,v 1.10 2002/12/31 01:54:35 massiot Exp $
+ * $Id: udp.c,v 1.11 2003/02/04 10:07:40 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Tristan Leteurtre <tooney@via.ecp.fr>
 #include <vlc/vlc.h>
 #include <vlc/input.h>
 
+#ifdef HAVE_SYS_TIME_H
+#    include <sys/time.h>
+#endif
+
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
 #elif defined( _MSC_VER ) && defined( _WIN32 )