mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 15:12:58 +00:00
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:
parent
76f1b4540a
commit
06044e1c17
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue