summaryrefslogtreecommitdiff
path: root/gst/real
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-01-09 10:06:28 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-01-09 10:06:28 +0000
commitabe3e58b1b29867f0728cf0d108602833287e0cf (patch)
treedc82648d0a451133e658ee515b7b4ca5452428b5 /gst/real
parent215773aadaaa2e7e6a96761735c26fc4c213d16e (diff)
downloadgstreamer-plugins-bad-abe3e58b1b29867f0728cf0d108602833287e0cf.tar.gz
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).
Diffstat (limited to 'gst/real')
-rw-r--r--gst/real/Makefile.am11
1 files changed, 8 insertions, 3 deletions
diff --git a/gst/real/Makefile.am b/gst/real/Makefile.am
index 63696591d..d49e3637e 100644
--- a/gst/real/Makefile.am
+++ b/gst/real/Makefile.am
@@ -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 \ No newline at end of file
+ gstrealaudiodec.h