summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/app/Makefile.am4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 52075a89..8dddf1d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-04-17 Tim-Philipp Müller <tim at centricular dot net>
+ * gst/app/Makefile.am:
+ Fix CFLAGS and hopefully #430594.
+
+2007-04-17 Tim-Philipp Müller <tim at centricular dot net>
+
* gst/nsf/types.h:
Rename #ifndef header guard symbol to something less generic, so
types.h doesn't get skipped over when compiling on MingW. Include
diff --git a/gst/app/Makefile.am b/gst/app/Makefile.am
index d9b9d0d7..8f2907e2 100644
--- a/gst/app/Makefile.am
+++ b/gst/app/Makefile.am
@@ -1,9 +1,7 @@
plugin_LTLIBRARIES = libgstapp.la
libgstapp_la_SOURCES = gstapp.c
-libgstapp_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
- $(GST_PLUGINS_BASE_CFLAGS) \
- $(top_srcdir)/gst-libs/
+libgstapp_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
libgstapp_la_LIBADD = $(GST_BASE_LIBS) $(top_builddir)/gst-libs/gst/app/libgstapp-@GST_MAJORMINOR@.la
libgstapp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)