vlc-0.5.3

LOCATION

modules/access/file.c

EXPLANATION

file.c relies on struct timeval from but does not include it. Causes compile to fail.

FILES AFFECTED

The following files need fixes.

  • modules/access/file.c

    FIXES

    Just add #include <sys/time.h> in file.c.


    --- modules/access/file.c Sat May 3 19:32:09 2003
    +++ modules/access/file.c.new Sat May 3 19:32:28 2003
    @@ -29,6 +29,7 @@

    #include <stdlib.h>
    #include <string.h>
    +#include <sys/time.h>
    #ifdef HAVE_SYS_TYPES_H
    # include <sys/types.h>
    #endif

    BACK