mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 10:04:23 +00:00
configure: error out if no OMX target has been set explicitly with --with-omx-target=x
Avoids people building for e.g. the Raspberry Pi and then wondering why things don't work as expected (since structs are packed differently there).
This commit is contained in:
parent
cec15addc9
commit
c90a6d47bc
1 changed files with 3 additions and 3 deletions
|
@ -194,7 +194,7 @@ AC_ARG_ENABLE(Bsymbolic,
|
|||
|
||||
AC_ARG_WITH([omx-target],
|
||||
AS_HELP_STRING([--with-omx-target],[Use this OpenMAX IL target (generic, bellagio, rpi)]),
|
||||
[ac_cv_omx_target="$withval"], [ac_cv_omx_target="generic"])
|
||||
[ac_cv_omx_target="$withval"], [ac_cv_omx_target="none"])
|
||||
|
||||
ac_cv_omx_target_struct_packing="none"
|
||||
AC_MSG_NOTICE([Using $ac_cv_omx_target as OpenMAX IL target])
|
||||
|
@ -209,8 +209,8 @@ case "${ac_cv_omx_target}" in
|
|||
bellagio)
|
||||
AC_DEFINE(USE_OMX_TARGET_BELLAGIO, 1, [Use Bellagio OpenMAX IL target])
|
||||
;;
|
||||
*)
|
||||
AC_ERROR([invalid OpenMAX IL target])
|
||||
none|*)
|
||||
AC_ERROR([invalid OpenMAX IL target, you must specify one of --with-omx-target={generic,rpi,bellagio}])
|
||||
;;
|
||||
esac
|
||||
AM_CONDITIONAL(USE_OMX_TARGET_GENERIC, test "x$ac_cv_omx_target" = "xgeneric")
|
||||
|
|
Loading…
Reference in a new issue