allocators: fix meson build after physmem move from -bad

This commit is contained in:
Tim-Philipp Müller 2017-12-19 12:44:35 +00:00
parent 70f93db181
commit 6559bd75ac

View file

@ -1,11 +1,12 @@
gst_allocators_headers = [ gst_allocators_headers = [
'allocators.h', 'allocators.h',
'gstfdmemory.h', 'gstfdmemory.h',
'gstphysmemory.h',
'gstdmabuf.h', 'gstdmabuf.h',
] ]
install_headers(gst_allocators_headers, subdir : 'gstreamer-1.0/gst/allocators/') install_headers(gst_allocators_headers, subdir : 'gstreamer-1.0/gst/allocators/')
gst_allocators_sources = [ 'gstdmabuf.c', 'gstfdmemory.c' ] gst_allocators_sources = [ 'gstdmabuf.c', 'gstfdmemory.c', 'gstphysmemory.c']
gstallocators = library('gstallocators-@0@'.format(api_version), gstallocators = library('gstallocators-@0@'.format(api_version),
gst_allocators_sources, gst_allocators_sources,
c_args : gst_plugins_base_args, c_args : gst_plugins_base_args,