From c90a6d47bc495a9af3ccc1641b5011c9ca306f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 23 Apr 2013 09:53:18 +0100 Subject: 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). --- configure.ac | 6 +++--- 1 file 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") -- cgit v1.2.1