From: Tim-Philipp Müller Date: Wed, 17 Oct 2018 13:15:33 +0000 (+0100) Subject: meson: Replace empty configuration_data() with copy keyword X-Git-Tag: 1.16.2~342 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cac9aab107176b0398a10d2bdaca23909fd107e1;p=platform%2Fupstream%2Fgst-plugins-good.git meson: Replace empty configuration_data() with copy keyword Use 'copy' keyword to avoid meson warning message. Note that 'copy' keyword in configure_file() is available since meson 0.47.0 https://bugzilla.gnome.org/show_bug.cgi?id=797298 --- diff --git a/gst/audiofx/meson.build b/gst/audiofx/meson.build index 52c6e0f..45f0536 100644 --- a/gst/audiofx/meson.build +++ b/gst/audiofx/meson.build @@ -30,10 +30,10 @@ if have_orcc else orc_h = configure_file(input : orcsrc + '-dist.h', output : orcsrc + '.h', - configuration : configuration_data()) + copy : true) orc_c = configure_file(input : orcsrc + '-dist.c', output : orcsrc + '.c', - configuration : configuration_data()) + copy : true) endif gstaudiofx = library('gstaudiofx', diff --git a/gst/deinterlace/meson.build b/gst/deinterlace/meson.build index 6957ba6..d8213d3 100644 --- a/gst/deinterlace/meson.build +++ b/gst/deinterlace/meson.build @@ -26,10 +26,10 @@ if have_orcc else orc_h = configure_file(input : orcsrc + '-dist.h', output : orcsrc + '.h', - configuration : configuration_data()) + copy : true) orc_c = configure_file(input : orcsrc + '-dist.c', output : orcsrc + '.c', - configuration : configuration_data()) + copy : true) endif gstdeinterlace = library('gstdeinterlace', diff --git a/gst/videobox/meson.build b/gst/videobox/meson.build index 139910b..c2d94b9 100644 --- a/gst/videobox/meson.build +++ b/gst/videobox/meson.build @@ -11,10 +11,10 @@ if have_orcc else orc_h = configure_file(input : orcsrc + '-dist.h', output : orcsrc + '.h', - configuration : configuration_data()) + copy : true) orc_c = configure_file(input : orcsrc + '-dist.c', output : orcsrc + '.c', - configuration : configuration_data()) + copy : true) endif gstvideobox = library('gstvideobox', diff --git a/gst/videomixer/meson.build b/gst/videomixer/meson.build index abe5c1b..a7ebdb5 100644 --- a/gst/videomixer/meson.build +++ b/gst/videomixer/meson.build @@ -16,10 +16,10 @@ if have_orcc else orc_h = configure_file(input : orcsrc + '-dist.h', output : orcsrc + '.h', - configuration : configuration_data()) + copy : true) orc_c = configure_file(input : orcsrc + '-dist.c', output : orcsrc + '.c', - configuration : configuration_data()) + copy : true) endif gstvideomixer = library('gstvideomixer',