rpi-userland: fix musl compile
authorSergio Prado <sergio.prado@e-labworks.com>
Fri, 27 Nov 2015 17:37:37 +0000 (15:37 -0200)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 27 Nov 2015 18:30:30 +0000 (19:30 +0100)
commit044a0f2919911b00bb38d4f1c2e486799cd4d670
treebc3a46fd8afc605f1ee235fb0b3bec1c1a553f43
parentedb154b94fe37d32ada3c8631e89c1333c72851f
rpi-userland: fix musl compile

When building with musl, the build fails with a conflicting type
qualifier error.

This is because musl defines stdout and stderr as const pointers
and RaspiVidYUV.c adds an extern declaration as normal pointers.

Since this declaration already comes in on the header (stdio.h),
there is no need to add an extern declaration, so removes it.

Fixes:

http://autobuild.buildroot.net/results/27bd6f32cecdb4e7c95247c1feaf2732c1d8e3fa

Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/rpi-userland/0006-Fix-conflicting-type-qualifiers-errors-when-building.patch [new file with mode: 0644]