summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2013-04-23 09:53:18 +0100
committerTim-Philipp Müller <tim@centricular.net>2013-04-23 09:53:18 +0100
commitc90a6d47bc495a9af3ccc1641b5011c9ca306f4e (patch)
tree6c919eb08df3ced3e66b0c91479563069969006c
parentcec15addc94366d1cd6af6b69b1c66e269860e10 (diff)
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).
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index b415569..e132a02 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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")