summaryrefslogtreecommitdiffstats
path: root/liba52
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-11 20:52:53 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-11 20:52:53 +0000
commiteb6fb0dbc9619009630e9dcf8739bea4f2c0c384 (patch)
treefce831b9055e60952b4dbf59c48d139c1289d575 /liba52
parent1e87b4bbaa5dbc2ab0e8c8084ecece30ada91ddc (diff)
downloadmpv-eb6fb0dbc9619009630e9dcf8739bea4f2c0c384.tar.bz2
mpv-eb6fb0dbc9619009630e9dcf8739bea4f2c0c384.tar.xz
Simplified/fixed altivec/altivec.h detection on Linux and Darwin (and others). Patch by Magnus Damm <damm@opensource.se>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10573 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'liba52')
-rw-r--r--liba52/Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/liba52/Makefile b/liba52/Makefile
index d09e2e7378..63cb29d3ef 100644
--- a/liba52/Makefile
+++ b/liba52/Makefile
@@ -7,13 +7,6 @@ SRCS = crc.c resample.c bit_allocate.c bitstream.c downmix.c imdct.c imdct_ml
OBJS = $(SRCS:.c=.o)
CFLAGS = $(MLIB_INC) $(OPTFLAGS)
-ifeq ($(TARGET_ALTIVEC),yes)
-ifeq ($(TARGET_OS),Darwin)
- CFLAGS+= -faltivec
-else
- CFLAGS+= -maltivec -mabi=altivec
-endif
-endif
.SUFFIXES: .c .o