diff options
author | tobik <tobik@FreeBSD.org> | 2019-04-15 02:34:56 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2019-04-15 02:34:56 +0800 |
commit | 7ce95c08c87be310871f0238b145ea42118650c4 (patch) | |
tree | 58b5b02645ebf28bc79fb5ada31cbb15c5bc2edd /multimedia | |
parent | 2d12552773af1149e5920e2feef5124b553b4aa1 (diff) | |
download | freebsd-ports-gnome-7ce95c08c87be310871f0238b145ea42118650c4.tar.gz freebsd-ports-gnome-7ce95c08c87be310871f0238b145ea42118650c4.tar.zst freebsd-ports-gnome-7ce95c08c87be310871f0238b145ea42118650c4.zip |
devel/meson: Update to 0.50.0
- Add build fixes for at-spi2-core and totem
Changes: https://mesonbuild.com/Release-notes-for-0-50-0.html
PR: 237138
Submitted by: tobik
Approved by: portmgr (antoine)
Exp-run by: antoine
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/totem/files/patch-src_meson.build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/multimedia/totem/files/patch-src_meson.build b/multimedia/totem/files/patch-src_meson.build new file mode 100644 index 000000000000..ed9b5115283e --- /dev/null +++ b/multimedia/totem/files/patch-src_meson.build @@ -0,0 +1,21 @@ +From 251de75543d2909ca9389800b41f6c493db5d988 Mon Sep 17 00:00:00 2001 +From: Bastien Nocera <hadess@hadess.net> +Date: Wed, 3 Apr 2019 13:43:03 +0200 +Subject: [PATCH] build: Fix meson error about subdir keyword + +src/meson.build:83:0: ERROR: Subdir keyword must not be an absolute path. +--- + src/meson.build | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- src/meson.build.orig 2018-07-24 13:29:49 UTC ++++ src/meson.build +@@ -86,7 +86,7 @@ headers = files( + + install_headers( + headers, +- subdir: join_paths(totem_includedir, totem_api_path) ++ subdir: totem_api_path + ) + + libtotem_player_sources = files( |