diff options
author | Bastien Nocera <hadess@hadess.net> | 2002-02-03 01:59:30 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2002-02-03 01:59:30 +0000 |
commit | 2da71acdf5256024081bcccfcdf952b9b8badd63 (patch) | |
tree | d83a513d92ed015252b67d8b4dff9afbf0c705be | |
parent | 7019a03ee118421df31f90269fdcfe5f62bd800f (diff) |
- remove the use of ASM as well
Original commit message from CVS:
- remove the use of ASM as well
-rw-r--r-- | gst/goom/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/goom/Makefile.am b/gst/goom/Makefile.am index 1440a595..6eac60d6 100644 --- a/gst/goom/Makefile.am +++ b/gst/goom/Makefile.am @@ -4,10 +4,10 @@ plugin_LTLIBRARIES = libgstgoom.la if HAVE_LIBMMX GOOM_FILTER_FILES = filters.c filters_mmx.s -GOOM_FILTER_CFLAGS = -DMMX +GOOM_FILTER_CFLAGS = -DMMX -DUSE_ASM else GOOM_FILTER_FILES = filters.c -GOOM_FILTER_CFLAGS = -UMMX +GOOM_FILTER_CFLAGS = -UMMX -UUSE_ASM endif libgstgoom_la_SOURCES = gstgoom.c goom_core.c $(GOOM_FILTER_FILES) graphic.c lines.c |