From 6559bd75ac27da83fe707cc58b8b14e31c0421c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 19 Dec 2017 12:44:35 +0000 Subject: [PATCH] allocators: fix meson build after physmem move from -bad --- gst-libs/gst/allocators/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/allocators/meson.build b/gst-libs/gst/allocators/meson.build index a143336394..a2ef0408f6 100644 --- a/gst-libs/gst/allocators/meson.build +++ b/gst-libs/gst/allocators/meson.build @@ -1,11 +1,12 @@ gst_allocators_headers = [ 'allocators.h', 'gstfdmemory.h', + 'gstphysmemory.h', 'gstdmabuf.h', ] 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), gst_allocators_sources, c_args : gst_plugins_base_args,