summaryrefslogtreecommitdiff
path: root/gir
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-01-17 14:11:28 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2020-01-17 14:14:15 +0100
commitda27f547c39090a4ef9c912d36516d66cbbca739 (patch)
tree8b67c316ba36fbbf9d4867d39322d063e7608d13 /gir
parent40405dfb0cfa7164280c7ce6bf49234632ab48da (diff)
downloadgobject-introspection-da27f547c39090a4ef9c912d36516d66cbbca739.tar.gz
meson: rename cross options to not start with cross_
Newer meson warns that option names can't start with "cross_", so we have to prefix them: "Option uses prefix "cross_", which is reserved for Meson. This will become an error in the future."
Diffstat (limited to 'gir')
-rw-r--r--gir/meson.build20
1 files changed, 10 insertions, 10 deletions
diff --git a/gir/meson.build b/gir/meson.build
index a0b96cfd..04f9371a 100644
--- a/gir/meson.build
+++ b/gir/meson.build
@@ -41,7 +41,7 @@ gir_files = [
typelibdir = join_paths(get_option('libdir'), 'girepository-1.0')
install_data(gir_files, install_dir: girdir)
-if get_option('cross_use_host_gi')
+if get_option('gi_cross_use_host_gi')
scanner_command = [
'g-ir-scanner',
]
@@ -72,11 +72,11 @@ if dep_type == 'internal'
'--extra-library=glib-2.0', '--extra-library=gobject-2.0']
endif
-if get_option('cross_gi_binary_wrapper') != ''
- scanner_command += ['--use-binary-wrapper=' + get_option('cross_gi_binary_wrapper')]
+if get_option('gi_cross_binary_wrapper') != ''
+ scanner_command += ['--use-binary-wrapper=' + get_option('gi_cross_binary_wrapper')]
endif
-if get_option('cross_gi_ldd_wrapper') != ''
- scanner_command += ['--use-ldd-wrapper=' + get_option('cross_gi_ldd_wrapper')]
+if get_option('gi_cross_ldd_wrapper') != ''
+ scanner_command += ['--use-ldd-wrapper=' + get_option('gi_cross_ldd_wrapper')]
endif
# Take a glob and print to newlines
globber = '''
@@ -104,8 +104,8 @@ glib_command = scanner_command + [
if dep_type == 'pkgconfig'
glib_command += ['--external-library', '--pkg=glib-2.0']
- glib_libdir = get_option('cross_pkgconfig_sysroot_path') + glib_dep.get_pkgconfig_variable('libdir')
- glib_incdir = get_option('cross_pkgconfig_sysroot_path') + join_paths(glib_dep.get_pkgconfig_variable('includedir'), 'glib-2.0')
+ glib_libdir = get_option('gi_cross_pkgconfig_sysroot_path') + glib_dep.get_pkgconfig_variable('libdir')
+ glib_incdir = get_option('gi_cross_pkgconfig_sysroot_path') + join_paths(glib_dep.get_pkgconfig_variable('includedir'), 'glib-2.0')
glib_libincdir = join_paths(glib_libdir, 'glib-2.0', 'include')
glib_files += join_paths(glib_incdir, 'gobject', 'glib-types.h')
glib_files += join_paths(glib_libincdir, 'glibconfig.h')
@@ -360,7 +360,7 @@ if giounix_dep.found()
dep_type = giounix_dep.type_name()
if dep_type == 'pkgconfig'
gio_command += ['--pkg=gio-unix-2.0']
- giounix_includedir = get_option('cross_pkgconfig_sysroot_path') + join_paths(giounix_dep.get_pkgconfig_variable('includedir'), 'gio-unix-2.0')
+ giounix_includedir = get_option('gi_cross_pkgconfig_sysroot_path') + join_paths(giounix_dep.get_pkgconfig_variable('includedir'), 'gio-unix-2.0')
# Get the installed gio-unix header list
ret = run_command(python, '-c', globber.format(join_paths(giounix_includedir, 'gio', '*.h')))
if ret.returncode() != 0
@@ -443,8 +443,8 @@ gir_files += custom_target('gir-girepository',
)
typelibs = []
-if get_option('cross_gi_binary_wrapper') != ''
- gircompiler_command = [get_option('cross_gi_binary_wrapper'), gircompiler.full_path(), ]
+if get_option('gi_cross_binary_wrapper') != ''
+ gircompiler_command = [get_option('gi_cross_binary_wrapper'), gircompiler.full_path(), ]
else
gircompiler_command = [gircompiler, ]
endif