mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-24 09:34:25 +00:00
voaacenc: Fix CFLAGS and LIBS
This commit is contained in:
parent
988516ca63
commit
55d8c52640
1 changed files with 11 additions and 3 deletions
|
@ -4,9 +4,17 @@ libgstvoaacenc_la_SOURCES = \
|
|||
gstvoaac.c \
|
||||
gstvoaacenc.c
|
||||
|
||||
libgstvoaacenc_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(VOAACENC_CFLAGS)
|
||||
libgstvoaacenc_la_LIBADD = -lgstaudio-$(GST_MAJORMINOR) \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(VOAACENC_LIBS)
|
||||
libgstvoaacenc_la_CFLAGS = \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) \
|
||||
$(GST_CFLAGS) \
|
||||
$(VOAACENC_CFLAGS)
|
||||
libgstvoaacenc_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-$(GST_MAJORMINOR) \
|
||||
$(GST_BASE_LIBS) \
|
||||
$(GST_LIBS) \
|
||||
$(VOAACENC_LIBS)
|
||||
libgstvoaacenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvoaacenc_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
Loading…
Reference in a new issue