Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/configure b/configure
- index da3e82e..0ee84f8 100755
- --- a/configure
- +++ b/configure
- @@ -506,15 +506,25 @@ if enabled ffmpeg_static; then
- # omx
- if enabled omx; then
- has_omx=true
- + OLDCFLAGS=$CFLAGS
- + if [ -d "/opt/vc/include" ]; then
- + CFLAGS="-I/opt/vc/include $CFLAGS"
- + echo "CFLAGS: '$CFLAGS'"
- + fi
- check_cc_header "bcm_host" omx_rpi
- if enabled omx_rpi; then
- check_cc_header "IL/OMX_Core" omx || has_omx=false
- else
- + CFLAGS=$OLDCFLAGS
- check_cc_header OMX_Core omx || has_omx=false
- fi
- - if ! $has_omx; then
- - die "OpenMAX IL not found"
- - fi
- + #if ! $has_omx; then
- + # die "OpenMAX IL not found"
- + #fi
- + echo "PLATFORM: '$PLATFORM'"
- + echo "CFLAGS: '$CFLAGS'"
- + echo "LDFLAGS: '$LDFLAGS'"
- + die "we're good"
- fi
- else
Add Comment
Please, Sign In to add comment