mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
391b4309f9
commit
441402f9d5
1 changed files with 6 additions and 3 deletions
|
@ -34,7 +34,8 @@ DIST_SUBDIRS = parse
|
|||
# distinction clear
|
||||
|
||||
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
|
||||
|
||||
EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||
|
@ -110,9 +111,10 @@ nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
|
|||
BUILT_SOURCES = \
|
||||
$(built_header_configure) \
|
||||
$(built_header_make) \
|
||||
$(built_header_make_noinst) \
|
||||
$(built_source_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 = $(built_header_configure)
|
||||
|
||||
|
@ -209,7 +211,8 @@ noinst_HEADERS = \
|
|||
gstregistrybinary.h \
|
||||
gstregistrychunks.h \
|
||||
gsttrace.h \
|
||||
gst_private.h
|
||||
gst_private.h \
|
||||
$(built_header_make_noinst)
|
||||
|
||||
gstmarshal.h: gstmarshal.list
|
||||
$(AM_V_GEN)glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp && \
|
||||
|
|
Loading…
Reference in a new issue