summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeungha Yang <seungha.yang@navercorp.com>2018-09-27 21:21:14 +0900
committerTim-Philipp Müller <tim@centricular.com>2018-10-17 13:48:47 +0100
commit3499d9ea646311a879813fa033226b7624d9e1eb (patch)
treeab340d3772659eb0061e9522f82d6d4fe63390f7
parent76ba8d8759d8b1ec913ddfac21ea5402cc806b6f (diff)
downloadgst-plugins-base-3499d9ea646311a879813fa033226b7624d9e1eb.tar.gz
gst-plugins-base-3499d9ea646311a879813fa033226b7624d9e1eb.tar.xz
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
-rw-r--r--gst-libs/gst/audio/meson.build4
-rw-r--r--gst-libs/gst/video/meson.build4
-rw-r--r--gst/adder/meson.build4
-rw-r--r--gst/audiomixer/meson.build4
-rw-r--r--gst/videotestsrc/meson.build4
-rw-r--r--gst/volume/meson.build4
6 files changed, 12 insertions, 12 deletions
diff --git a/gst-libs/gst/audio/meson.build b/gst-libs/gst/audio/meson.build
index 7bc246029..0e4efab2e 100644
--- a/gst-libs/gst/audio/meson.build
+++ b/gst-libs/gst/audio/meson.build
@@ -89,10 +89,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
simd_cargs = []
diff --git a/gst-libs/gst/video/meson.build b/gst-libs/gst/video/meson.build
index 356a34525..5d694c18b 100644
--- a/gst-libs/gst/video/meson.build
+++ b/gst-libs/gst/video/meson.build
@@ -114,10 +114,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
gstvideo = library('gstvideo-@0@'.format(api_version),
diff --git a/gst/adder/meson.build b/gst/adder/meson.build
index 19edae34a..7ba1ff19d 100644
--- a/gst/adder/meson.build
+++ b/gst/adder/meson.build
@@ -13,10 +13,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
adder = library('gstadder',
diff --git a/gst/audiomixer/meson.build b/gst/audiomixer/meson.build
index 9da6b16d1..0bca202fb 100644
--- a/gst/audiomixer/meson.build
+++ b/gst/audiomixer/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
gstaudiomixer = library('gstaudiomixer',
diff --git a/gst/videotestsrc/meson.build b/gst/videotestsrc/meson.build
index 08c6406c7..6a8183828 100644
--- a/gst/videotestsrc/meson.build
+++ b/gst/videotestsrc/meson.build
@@ -13,10 +13,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
gstvideotestsrc = library('gstvideotestsrc',
diff --git a/gst/volume/meson.build b/gst/volume/meson.build
index b4d24507d..3af909fbe 100644
--- a/gst/volume/meson.build
+++ b/gst/volume/meson.build
@@ -13,10 +13,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
gstvolume = library('gstvolume', 'gstvolume.c', orc_c, orc_h,