From: Tim-Philipp Müller Date: Tue, 17 Apr 2007 10:56:37 +0000 (+0000) Subject: gst/app/Makefile.am: Fix CFLAGS and hopefully #430594. X-Git-Tag: 1.19.3~507^2~21094 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6cbfc31aaeff594d4c092e9200f5b6fc5c907d17;p=platform%2Fupstream%2Fgstreamer.git gst/app/Makefile.am: Fix CFLAGS and hopefully #430594. Original commit message from CVS: * gst/app/Makefile.am: Fix CFLAGS and hopefully #430594. --- diff --git a/ChangeLog b/ChangeLog index 52075a8..8dddf1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-04-17 Tim-Philipp Müller + * gst/app/Makefile.am: + Fix CFLAGS and hopefully #430594. + +2007-04-17 Tim-Philipp Müller + * 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 d9b9d0d..8f2907e 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)