mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
faad: fix Makefile.am some more
FAAD_CFLAGS and _LIBS should be at the end, and -lgstaudio-0.10 should go right after GST_PLUGINS_BASE_LIBS.
This commit is contained in:
parent
cddb7b958e
commit
5072ca2331
1 changed files with 4 additions and 3 deletions
|
@ -1,9 +1,10 @@
|
|||
plugin_LTLIBRARIES = libgstfaad.la
|
||||
|
||||
libgstfaad_la_SOURCES = gstfaad.c
|
||||
libgstfaad_la_CFLAGS = $(FAAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstfaad_la_LIBADD = $(FAAD_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) \
|
||||
-lgstaudio-@GST_MAJORMINOR@
|
||||
libgstfaad_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) $(GST_CFLAGS) $(FAAD_CFLAGS)
|
||||
libgstfaad_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(FAAD_LIBS)
|
||||
libgstfaad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfaad_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
Loading…
Reference in a new issue