summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
m---------common0
-rw-r--r--gst/real/Makefile.am11
3 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ea9da92..478a618e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
diff --git a/common b/common
-Subproject 64f924f6f2ff6275b06facb4c2adbc7c05f7064
+Subproject 8ba5dffb5ee7e7daea1030f6b34bfef10f9801a
diff --git a/gst/real/Makefile.am b/gst/real/Makefile.am
index 63696591..d49e3637 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