I'm trying to cross compile vlc with mmal support for raspberry pi.
I'm stuck at configuration with:
Code: Select all
checking interface/mmal/mmal.h usability... no
checking interface/mmal/mmal.h presence... no
checking for interface/mmal/mmal.h... no
configure: error: Cannot find development headers for mmal...
Code: Select all
git clone https://github.com/raspberrypi/userland.git
./buildme
Code: Select all
git clone https://github.com/raspberrypi/tools.git
Now I'm configuring vlc with
Code: Select all
./configure --host=arm-linux --enable-mmal --disable-avcodec --disable-mad --disable-swscale --disable-a52
I tried adding CPPFLAGS="-I/path/to/mmal", but also CFLAGS_mmal="-I/path/to/mmal" but it doesn't work...
Can anyone provide some hint on how to tell ./configure where mmal headers are?
Thanks!