mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/real/Makefile.am: Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
Original commit message from CVS: * gst/real/Makefile.am: Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
This commit is contained in:
parent
215773aada
commit
abe3e58b1b
3 changed files with 14 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/real/Makefile.am:
|
||||
Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
|
||||
|
||||
2007-01-07 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* configure.ac:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 64f924f6f2ff6275b06facb4c2adbc7c05f70641
|
||||
Subproject commit 8ba5dffb5ee7e7daea1030f6b34bfef10f9801a3
|
|
@ -5,10 +5,15 @@ libgstreal_la_SOURCES = \
|
|||
gstrealaudiodec.c \
|
||||
gstreal.c
|
||||
|
||||
libgstreal_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstreal_la_LIBADD = $(GST_BASE_LIBS)
|
||||
libgstreal_la_CFLAGS = \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) \
|
||||
$(GST_CFLAGS)
|
||||
libgstreal_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@ \
|
||||
$(GST_BASE_LIBS)
|
||||
libgstreal_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstrealvideodec.h \
|
||||
gstrealaudiodec.h
|
||||
gstrealaudiodec.h
|
||||
|
|
Loading…
Reference in a new issue