add configure option (--diable-arm-acc) to disable arm hardware acceleration

Origin commit data
------------------
Branch: ni/coolstream
Commit: dc25b6a1b8
Author: TangoCash <eric@loxat.de>
Date: 2020-05-29 (Fri, 29 May 2020)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2020-05-29 00:44:16 +02:00
committed by vanhofen
parent ebba032947
commit 49b3352f13
4 changed files with 15 additions and 0 deletions

View File

@@ -228,6 +228,15 @@ if test "$enable_upnp" = "yes"; then
fi
AM_CONDITIONAL(ENABLE_UPNP, test "$enable_upnp" = "yes")
AC_ARG_ENABLE(arm-acc,
AS_HELP_STRING(--disable-arm-acc,disable arm hardware acceleration),
,[enable_arm_acc=yes])
AM_CONDITIONAL(ENABLE_ARM_ACC,test "$enable_arm_acc" = "yes")
if test "$enable_arm_acc" = "yes"; then
AC_DEFINE(ENABLE_ARM_ACC,1,[enable arm hardware acceleration])
fi
AC_ARG_ENABLE(extupdate,
AS_HELP_STRING([--enable-extupdate], [enable extended update routine @<:@default=no@:>@]),
AC_DEFINE(ENABLE_EXTUPDATE, 1, [enable extended update routine]))