gst: Don't install gstmarshal.h

The generic, FFI based marshaller should be used instead of these
and we definitely shouldn't export the marshallers in our public API.
This commit is contained in:
Sebastian Dröge 2012-03-02 10:51:42 +01:00
parent 391b4309f9
commit 441402f9d5

View file

@ -34,7 +34,8 @@ DIST_SUBDIRS = parse
# distinction clear # distinction clear
built_header_configure = gstconfig.h gstversion.h built_header_configure = gstconfig.h gstversion.h
built_header_make = gstenumtypes.h gstmarshal.h built_header_make = gstenumtypes.h
built_header_make_noinst = gstmarshal.h
built_source_make = gstenumtypes.c gstmarshal.c built_source_make = gstenumtypes.c gstmarshal.c
EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \ EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
@ -110,9 +111,10 @@ nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
BUILT_SOURCES = \ BUILT_SOURCES = \
$(built_header_configure) \ $(built_header_configure) \
$(built_header_make) \ $(built_header_make) \
$(built_header_make_noinst) \
$(built_source_make) $(built_source_make)
# CLEANFILES is for files generated by make # CLEANFILES is for files generated by make
CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out CLEANFILES = $(built_header_make) $(built_header_make_noinst) $(built_source_make) $(as_dll_cleanfiles) *.gcno *.gcda *.gcov *.gcov.out
# DISTCLEANFILES is for files generated by configure # DISTCLEANFILES is for files generated by configure
DISTCLEANFILES = $(built_header_configure) DISTCLEANFILES = $(built_header_configure)
@ -209,7 +211,8 @@ noinst_HEADERS = \
gstregistrybinary.h \ gstregistrybinary.h \
gstregistrychunks.h \ gstregistrychunks.h \
gsttrace.h \ gsttrace.h \
gst_private.h gst_private.h \
$(built_header_make_noinst)
gstmarshal.h: gstmarshal.list gstmarshal.h: gstmarshal.list
$(AM_V_GEN)glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp && \ $(AM_V_GEN)glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp && \