diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-04-14 18:34:56 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-04-14 18:34:56 +0000 |
commit | 62e83c3aa7a03da93af6b2ea8063fead6c7e20e4 (patch) | |
tree | 58b5b02645ebf28bc79fb5ada31cbb15c5bc2edd /accessibility | |
parent | 78d4ab4b81d8eb1564f54fa76561d81db5505047 (diff) | |
download | ports-62e83c3aa7a03da93af6b2ea8063fead6c7e20e4.tar.gz ports-62e83c3aa7a03da93af6b2ea8063fead6c7e20e4.zip |
Notes
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/at-spi2-core/files/patch-atspi_meson.build | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/accessibility/at-spi2-core/files/patch-atspi_meson.build b/accessibility/at-spi2-core/files/patch-atspi_meson.build new file mode 100644 index 000000000000..ffdec566de70 --- /dev/null +++ b/accessibility/at-spi2-core/files/patch-atspi_meson.build @@ -0,0 +1,27 @@ +From 44a812ea51223d82f21a098a2d45fcc5c329ce7a Mon Sep 17 00:00:00 2001 +From: Tobias Stoeckmann <tobias@stoeckmann.org> +Date: Tue, 12 Mar 2019 11:46:24 +0100 +Subject: [PATCH] Fix meson.build for meson 0.50.0. + +Since meson 0.50.0 it is not possible anymore to specify an +absolute directory for subdir. To keep current functionality, +use install_dir instead. + +atspi/meson.build:60:0: ERROR: Subdir keyword must not be an absolute path. + +Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> +--- + atspi/meson.build | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- atspi/meson.build.orig 2019-04-11 17:26:18 UTC ++++ atspi/meson.build +@@ -57,7 +57,7 @@ atspi_headers = [ + + atspi_includedir = join_paths(get_option('prefix'), get_option('includedir'), 'at-spi-2.0', 'atspi') + +-install_headers(atspi_headers, subdir: atspi_includedir) ++install_headers(atspi_headers, install_dir: atspi_includedir) + + atspi_enums = gnome.mkenums('atspi-enum-types', + sources: [ 'atspi-constants.h', 'atspi-types.h' ], |