diff options
author | Michael Forney <mforney@mforney.org> | 2021-04-10 09:15:00 +0200 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-04-10 09:15:00 +0200 |
commit | 20bc3c521ab47cb3435c108a41113e98f8a3d805 (patch) | |
tree | 3d4163de347b89892b6906b9d110de7cc6be8f99 | |
parent | devel/fbthrift: Add missing dependency on RocketUpgrade headers to thriftcpp2... (diff) |
deskutils/bijiben: Add generated biji-marshalers.h to libbiji dependency sources (D29353)
The meson manual states that
> Each target that depends on a generated header should add that
> header to it's sources, as seen above with libfoo and myexe. This
> is because there is no way for Meson or the backend to know that
> myexe depends on foo.h just because libfoo does, it could be a
> private header.
Since biji-marshalers.h is included by the libbiji public header
libbiji.h, it must be added as a source to all targets that depend
on libbiji. This can be done by adding it to the sources of
libbiji_dep.
This should unbreak the build with samurai.
https://github.com/michaelforney/samurai/issues/70
PR: 254678
-rw-r--r-- | deskutils/bijiben/files/patch-src_libbiji_meson.build | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/deskutils/bijiben/files/patch-src_libbiji_meson.build b/deskutils/bijiben/files/patch-src_libbiji_meson.build new file mode 100644 index 000000000000..0365e6ee7ac1 --- /dev/null +++ b/deskutils/bijiben/files/patch-src_libbiji_meson.build @@ -0,0 +1,56 @@ +From 6dd31c362b264a7d7e5441310ee5baebb3769ac5 Mon Sep 17 00:00:00 2001 +From: Michael Forney <mforney@mforney.org> +Date: Fri, 9 Apr 2021 21:45:13 -0700 +Subject: [PATCH] Add generated biji-marshalers.h to libbiji dependency sources + +The meson manual states that + +> Each target that depends on a generated header should add that +> header to it's sources, as seen above with libfoo and myexe. This +> is because there is no way for Meson or the backend to know that +> myexe depends on foo.h just because libfoo does, it could be a +> private header. + +Since biji-marshalers.h is included by the libbiji public header +libbiji.h, it must be added as a source to all targets that depend +on libbiji. This can be done by adding it to the sources of +libbiji_dep. + +Fixes #157. + +https://gitlab.gnome.org/GNOME/gnome-notes/-/merge_requests/116 + +--- src/libbiji/meson.build.orig 2020-09-20 21:32:11 UTC ++++ src/libbiji/meson.build +@@ -27,11 +27,9 @@ sources = files( + '../bjb-utils.c', + ) + +-marshalers = 'biji-marshalers' +- +-sources += gnome.genmarshal( +- marshalers, +- sources: marshalers + '.list', ++marshalers = gnome.genmarshal( ++ 'biji-marshalers', ++ sources: 'biji-marshalers.list', + prefix: '_biji_marshal' + ) + +@@ -48,7 +46,7 @@ endif + + libbiji = static_library( + 'biji', +- sources: sources, ++ sources: sources + marshalers, + include_directories: top_inc, + dependencies: deps, + c_args: cflags +@@ -57,5 +55,6 @@ libbiji = static_library( + libbiji_dep = declare_dependency( + link_with: libbiji, + include_directories: include_directories('.'), +- dependencies: deps ++ dependencies: deps, ++ sources: marshalers[1], + ) |