diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | gst/level/Makefile.am | 8 |
2 files changed, 12 insertions, 6 deletions
@@ -1,3 +1,13 @@ +2004-02-26 David Schleef <ds@schleef.org> + + * gst-libs/gst/colorbalance/Makefile.am: + * gst-libs/gst/mixer/Makefile.am: + * gst-libs/gst/tuner/Makefile.am: + * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files + should not be disted, -marshal.h files should not be installed, + and -enum.h files _should_ be installed. Fix to make this the + case. + === release 0.7.5 === 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org> diff --git a/gst/level/Makefile.am b/gst/level/Makefile.am index 21f90990..6413c32c 100644 --- a/gst/level/Makefile.am +++ b/gst/level/Makefile.am @@ -1,7 +1,8 @@ plugin_LTLIBRARIES = libgstlevel.la -libgstlevel_la_SOURCES = gstlevel.c gstlevel-marshal.c +libgstlevel_la_SOURCES = gstlevel.c +nodist_libgstlevel_la_SOURCES = gstlevel-marshal.c gstlevel-marshal.h libgstlevel_la_CFLAGS = $(GST_CFLAGS) libgstlevel_la_LIBADD = libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) @@ -39,9 +40,4 @@ gstlevel-marshal.c: gstlevel-marshal.list glib-genmarshal --body --prefix=gstlevel_cclosure_marshal $(srcdir)/gstlevel-marshal.list >> gstlevel-marshal.c.tmp mv gstlevel-marshal.c.tmp gstlevel-marshal.c -# Don't want the generated marshal files in the dist -dist-hook: - rm -f $(distdir)/gstlevel-marshal.c - rm -f $(distdir)/gstlevel-marshal.h - EXTRA_DIST = README |