summaryrefslogtreecommitdiffstats
path: root/libmpeg2
diff options
context:
space:
mode:
authorjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-24 16:20:04 +0000
committerjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-24 16:20:04 +0000
commit747d6d02f752ee9bd07686b1f27885d0717e4d2f (patch)
tree386743718f4d0934923acd147609f92ed582f630 /libmpeg2
parentec55c409eecf1fca87569f730f631632aca98f1e (diff)
downloadmpv-747d6d02f752ee9bd07686b1f27885d0717e4d2f.tar.bz2
mpv-747d6d02f752ee9bd07686b1f27885d0717e4d2f.tar.xz
Enable mediaLib support for Solaris on UltraSPARC CPUs
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1681 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2')
-rw-r--r--libmpeg2/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libmpeg2/Makefile b/libmpeg2/Makefile
index d3b9630b05..476e09b95e 100644
--- a/libmpeg2/Makefile
+++ b/libmpeg2/Makefile
@@ -3,9 +3,11 @@ LIBNAME = libmpeg2.a
include ../config.mak
-SRCS = header.c idct.c idct_mmx.c motion_comp.c motion_comp_mmx.c slice.c stats.c decode.c
+SRCS = header.c idct.c idct_mmx.c idct_mlib.c \
+ motion_comp.c motion_comp_mmx.c motion_comp_mlib.c \
+ slice.c stats.c decode.c
OBJS = $(SRCS:.c=.o)
-INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC)
+INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC) $(MLIB_INC)
CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY
.SUFFIXES: .c .o