Page 1 of 1

Compilation problem

Posted: 10 May 2013 17:17
by NoWay0001
I got errors in compilation of the latest git snapshot with gcc complaining about implicit declaration of open .

The culprit is this commit http://git.videolan.org/gitweb.cgi/vlc. ... 796b20f810

Including some missing headers solved the problem :

Code: Select all

#include <sys/types.h> #include <sys/stat.h> #include <fcntl.h>

Re: Compilation problem

Posted: 13 May 2013 17:22
by Jean-Baptiste Kempf
Fixed.