Made sure the mmx does not get compiled on non x86 CPUs

Original commit message from CVS:
Made sure the mmx does not get compiled on non x86 CPUs
This commit is contained in:
Wim Taymans 2001-01-12 19:42:52 +00:00
parent 76f1b4540a
commit 06044e1c17

View file

@ -2,7 +2,13 @@ filterdir = $(libdir)/gst
filter_LTLIBRARIES = libgstcolorspace.la
libgstcolorspace_la_SOURCES = gstcolorspace.c rgb2rgb.c yuv2rgb.c yuv2rgb_mmx16.s
if HAVE_CPU_I386
ARCHSRCS = yuv2rgb_mmx16.s
else
ARCHSRCS =
endif
libgstcolorspace_la_SOURCES = gstcolorspace.c rgb2rgb.c yuv2rgb.c $(ARCHSRCS)
libgstcolorspaceincludedir = $(includedir)/gst/libs/gstcolorspace
libgstcolorspaceinclude_HEADERS = gstcolorspace.h