Compilation problem
Posted: 10 May 2013 17:17
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 :
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>