diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-04-22 22:55:55 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-04-22 22:55:55 +0000 |
commit | 8784ae223db23a8c975fd0ddc0174637e0ce4076 (patch) | |
tree | 7f9c835f38560c43df01932c5dc4e8b3f8bab9d8 | |
parent | a7dc8352ef9cd887149c1bd45cb102c0be0914e4 (diff) | |
download | mpv-8784ae223db23a8c975fd0ddc0174637e0ce4076.tar.bz2 mpv-8784ae223db23a8c975fd0ddc0174637e0ce4076.tar.xz |
Move Tremor low accuracy CFLAGS handling to configure.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26502 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | tremor/Makefile | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -5922,6 +5922,7 @@ if test "$_tremor_internal" = yes ; then _codecmodules="tremor(internal) $_codecmodules" _res_comment="internal Tremor" if test "$_tremor_low" = yes ; then + CFLAGS="$CFLAGS -D_LOW_ACCURACY_" _res_comment="internal low accuracy Tremor" fi elif test "$_tremor_external" = yes ; then diff --git a/tremor/Makefile b/tremor/Makefile index d748665913..2817bc685b 100644 --- a/tremor/Makefile +++ b/tremor/Makefile @@ -17,6 +17,4 @@ SRCS_COMMON = bitwise.c \ synthesis.c \ window.c \ -CFLAGS-$(TREMOR_LOW) += -D_LOW_ACCURACY_ - include ../mpcommon.mak |