mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
gst/: -marshal.[ch] and -enum.[ch] files should not be disted, -marshal.h files should not be installed, and -enum.h ...
Original commit message from CVS: * 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.
This commit is contained in:
parent
fe6871adb1
commit
d85b229e8d
4 changed files with 29 additions and 8 deletions
10
ChangeLog
10
ChangeLog
|
@ -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 ===
|
=== release 0.7.5 ===
|
||||||
|
|
||||||
2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
|
@ -18,14 +18,17 @@ built_headers = \
|
||||||
colorbalance-marshal.h \
|
colorbalance-marshal.h \
|
||||||
colorbalance-enumtypes.h
|
colorbalance-enumtypes.h
|
||||||
|
|
||||||
libgstcolorbalanceinclude_HEADERS = $(colorbalance_headers) $(built_headers)
|
libgstcolorbalanceinclude_HEADERS = $(colorbalance_headers) \
|
||||||
|
colorbalance-enumtypes.h
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libgstcolorbalance.la
|
noinst_LTLIBRARIES = libgstcolorbalance.la
|
||||||
|
|
||||||
libgstcolorbalance_la_SOURCES = \
|
libgstcolorbalance_la_SOURCES = \
|
||||||
colorbalance.c \
|
colorbalance.c \
|
||||||
colorbalancechannel.c \
|
colorbalancechannel.c
|
||||||
$(built_sources)
|
nodist_libgstcolorbalance_la_SOURCES = \
|
||||||
|
$(built_sources) \
|
||||||
|
colorbalance-marshal.h
|
||||||
|
|
||||||
libgstcolorbalance_la_CFLAGS = $(GST_CFLAGS)
|
libgstcolorbalance_la_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -19,13 +19,17 @@ built_headers = \
|
||||||
mixer-marshal.h \
|
mixer-marshal.h \
|
||||||
mixer-enumtypes.h
|
mixer-enumtypes.h
|
||||||
|
|
||||||
libgstmixerinclude_HEADERS = $(mixer_headers) $(built_headers)
|
libgstmixerinclude_HEADERS = \
|
||||||
|
$(mixer_headers) \
|
||||||
|
mixer-enumtypes.h
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libgstmixer.la
|
noinst_LTLIBRARIES = libgstmixer.la
|
||||||
|
|
||||||
libgstmixer_la_SOURCES = \
|
libgstmixer_la_SOURCES = \
|
||||||
mixer.c \
|
mixer.c \
|
||||||
mixertrack.c \
|
mixertrack.c
|
||||||
|
nodist_libgstmixer_la_SOURCES = \
|
||||||
|
mixer-marshal.h \
|
||||||
$(built_sources)
|
$(built_sources)
|
||||||
|
|
||||||
libgstmixer_la_CFLAGS = $(GST_CFLAGS)
|
libgstmixer_la_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
|
@ -19,15 +19,19 @@ built_headers = \
|
||||||
tuner-marshal.h \
|
tuner-marshal.h \
|
||||||
tuner-enumtypes.h
|
tuner-enumtypes.h
|
||||||
|
|
||||||
libgsttunerinclude_HEADERS = $(tuner_headers) $(built_headers)
|
libgsttunerinclude_HEADERS = \
|
||||||
|
$(tuner_headers) \
|
||||||
|
tuner-enumtypes.h
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libgsttuner.la
|
noinst_LTLIBRARIES = libgsttuner.la
|
||||||
|
|
||||||
libgsttuner_la_SOURCES = \
|
libgsttuner_la_SOURCES = \
|
||||||
tuner.c \
|
tuner.c \
|
||||||
tunernorm.c \
|
tunernorm.c \
|
||||||
tunerchannel.c \
|
tunerchannel.c
|
||||||
$(built_sources)
|
nodist_libgsttuner_la_SOURCES = \
|
||||||
|
$(built_sources) \
|
||||||
|
tuner-marshal.h
|
||||||
|
|
||||||
libgsttuner_la_CFLAGS = $(GST_CFLAGS)
|
libgsttuner_la_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue