mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
faac: fix CFLAGS and LIBS order in Makefile.am
This commit is contained in:
parent
4093202e9d
commit
e94245c264
1 changed files with 5 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
|||
plugin_LTLIBRARIES = libgstfaac.la
|
||||
|
||||
libgstfaac_la_SOURCES = gstfaac.c
|
||||
libgstfaac_la_CFLAGS = $(FAAC_CFLAGS) $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS)
|
||||
libgstfaac_la_LIBADD = $(FAAC_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-@GST_MAJORMINOR@ -lgstpbutils-@GST_MAJORMINOR@
|
||||
libgstfaac_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||
$(GST_CFLAGS) $(FAAC_CFLAGS)
|
||||
libgstfaac_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-@GST_MAJORMINOR@ -lgstpbutils-@GST_MAJORMINOR@ \
|
||||
$(GST_BASE_LIBS) $(FAAC_LIBS)
|
||||
libgstfaac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstfaac_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
Loading…
Reference in a new issue