diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-07 02:06:19 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-07 02:06:19 +0000 |
commit | a7ed92153dd90fe4a3d1008143c9f27c1841489f (patch) | |
tree | 6e6e371a2b1a6025b5d53b501ca15d8fa56f7081 | |
parent | 20751bdbd37ea868b591bb87c33dc05e6534d7b5 (diff) | |
download | gst-plugins-bad-a7ed92153dd90fe4a3d1008143c9f27c1841489f.tar.gz gst-plugins-bad-a7ed92153dd90fe4a3d1008143c9f27c1841489f.tar.bz2 gst-plugins-bad-a7ed92153dd90fe4a3d1008143c9f27c1841489f.zip |
gst/xingheader/Makefile.am: Put CFLAGS and LIBS in the right order
Original commit message from CVS:
* gst/xingheader/Makefile.am:
Put CFLAGS and LIBS in the right order
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/xingheader/Makefile.am | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2008-02-07 Jan Schmidt <jan.schmidt@sun.com> + + * gst/xingheader/Makefile.am: + Put CFLAGS and LIBS in the right order + 2008-02-06 Tim-Philipp Müller <tim at centricular dot net> * configure.ac: diff --git a/gst/xingheader/Makefile.am b/gst/xingheader/Makefile.am index 5517b8ad..64c1716f 100644 --- a/gst/xingheader/Makefile.am +++ b/gst/xingheader/Makefile.am @@ -1,9 +1,9 @@ plugin_LTLIBRARIES = libgstxingheader.la libgstxingheader_la_SOURCES = gstxingmux.c -libgstxingheader_la_CFLAGS = $(GST_CFLAGS) +libgstxingheader_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) libgstxingheader_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstxingheader_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) +libgstxingheader_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) noinst_HEADERS = gstxingmux.h |