raspi: rename EGL_CFLAGS to OMX_CFLAGS

we are not really interested in EGL but in OpenMAX ;-)
This commit is contained in:
Stefan Seyfried
2013-11-07 10:53:25 +01:00
parent 1b5a6076d9
commit 2dd8dd1d20
2 changed files with 9 additions and 14 deletions

View File

@@ -32,20 +32,15 @@ if test x$BOXTYPE = xgeneric; then
PKG_CHECK_MODULES([SWSCALE], [libswscale])
PKG_CHECK_MODULES([SWRESAMPLE], [libswresample])
else
# egl are the broadcom userspace libs
# e.g. yocto (openembedded) has a egl package built from userland git.
# openmaxil are the broadcom userspace libs
# my yocto (openembedded) layer has an openmaxil package built from userland git.
# Use that if available. If not, just fall back to /opt/vc/...
# can be overridden with OMX_CFLAGS= OMX_LIBS= variables...
#
# note the ugly EGL_LIBS hack: egl package actually only really supplies
# the include paths and linker paths, we don't want to really link against
# libGLESv2 and libEGL, so I'm overriding the pkg-config result and add the
# openmaxil etc... libs manually
PKG_CHECK_MODULES([EGL], [egl], echo "EGL userspace package found. Good."
_PKG_CONFIG(EGL_LIBS, [libs-only-L], [egl])
EGL_LIBS="$EGL_LIBS -lopenmaxil -lbcm_host -lvcos -lvchiq_arm -pthread",
[ echo "EGL package not found, assuming /opt/vc/..."
EGL_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads/ -I/opt/vc/include/interface/vmcs_host/linux"
EGL_LIBS="-L/opt/vc/lib/ -lopenmaxil -lbcm_host -lvcos -lvchiq_arm -pthread"
PKG_CHECK_MODULES([OMX], [openmaxil], echo "OpenMAX/IL userspace package found. Good.",
[ echo "OpenMAX/IL package not found, assuming /opt/vc/..."
OMX_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads/ -I/opt/vc/include/interface/vmcs_host/linux"
OMX_LIBS="-L/opt/vc/lib/ -lopenmaxil -lbcm_host -lvcos -lvchiq_arm -pthread"
])
# raspbian has no current versions and only libav instead of ffmpeg... :-(
PKG_CHECK_MODULES([AVFORMAT], [libavformat])