mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
fix oopsie in spec files if anything, arch optimization should be handled generally, not locally for plugins
Original commit message from CVS: fix oopsie in spec files if anything, arch optimization should be handled generally, not locally for plugins
This commit is contained in:
parent
8d4b45b81d
commit
73cb75033c
2 changed files with 3 additions and 9 deletions
|
@ -2,15 +2,9 @@ plugindir = $(libdir)/gst
|
|||
|
||||
plugin_LTLIBRARIES = libgsta52dec.la
|
||||
|
||||
if HAVE_CPU_I386
|
||||
ARCHFLAGS = -m486
|
||||
else
|
||||
ARCHFLAGS =
|
||||
endif
|
||||
|
||||
libgsta52dec_la_SOURCES = gsta52dec.c
|
||||
libgsta52dec_la_CFLAGS = $(GST_CFLAGS) -O3 $(ARCHFLAGS) $(FOMIT_FRAME_POINTER)
|
||||
libgsta52dec_la_LIBADD = -la52 -lm
|
||||
libgsta52dec_la_CFLAGS = $(GST_CFLAGS) $(FOMIT_FRAME_POINTER)
|
||||
libgsta52dec_la_LIBADD = $(A52DEC_LIBS)
|
||||
libgsta52dec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = gsta52dec.h
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: gstreamer-plugins
|
||||
Version: @VERSION@
|
||||
Release: @GST_PLUGINS_RELEASE@
|
||||
Release: @GST_PLUGINS_VERSION_RELEASE@
|
||||
Summary: GStreamer Streaming-media framework plug-ins.
|
||||
|
||||
%define prefix /usr
|
||||
|
|
Loading…
Reference in a new issue