summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure3
-rw-r--r--tremor/Makefile2
2 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index 71ec91cdd2..f08d8555b6 100755
--- a/configure
+++ b/configure
@@ -5698,7 +5698,6 @@ if test "$_tremor_internal" = yes ; then
_codecmodules="tremor(internal) $_codecmodules"
_res_comment="internal Tremor"
if test "$_tremor_low" = yes ; then
- _tremor_flags='-D_LOW_ACCURACY_'
_res_comment="internal low accuracy Tremor"
fi
elif test "$_tremor_external" = yes ; then
@@ -7490,7 +7489,7 @@ MP3LIB = $_mp3lib
LIBA52 = $_liba52
LIBMPEG2 = $_libmpeg2
TREMOR_INTERNAL = $_tremor_internal
-TREMOR_FLAGS = $_tremor_flags
+TREMOR_LOW = $_tremor_low
FAAD = $_faad
SPEEX = $_speex
diff --git a/tremor/Makefile b/tremor/Makefile
index daefddcfd3..85506e20e5 100644
--- a/tremor/Makefile
+++ b/tremor/Makefile
@@ -17,6 +17,6 @@ SRCS_COMMON = bitwise.c \
synthesis.c \
window.c \
-CFLAGS = $(TREMOR_FLAGS)
+CFLAGS-$(TREMOR_LOW) += -D_LOW_ACCURACY_
include ../mpcommon.mak