* [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options
@ 2023-01-09 13:46 Philipp Zabel
2023-01-10 8:02 ` Michael Olbrich
2023-01-30 9:37 ` Philipp Zabel
0 siblings, 2 replies; 5+ messages in thread
From: Philipp Zabel @ 2023-01-09 13:46 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Ignore new Meson builtin options "pkgconfig.relocatable" and
"prefer_static" (since 0.63).
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
scripts/configure_helper.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
index 86dee3416d08..f515f6e0b1bb 100755
--- a/scripts/configure_helper.py
+++ b/scripts/configure_helper.py
@@ -149,6 +149,8 @@ meson_blacklist = [
"mandir",
"optimization",
"pkg_config_path",
+ "pkgconfig.relocatable",
+ "prefer_static",
"python.install_env",
"python.platlibdir",
"python.purelibdir",
--
2.30.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options
2023-01-09 13:46 [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options Philipp Zabel
@ 2023-01-10 8:02 ` Michael Olbrich
2023-01-11 10:24 ` Philipp Zabel
2023-01-30 9:37 ` Philipp Zabel
1 sibling, 1 reply; 5+ messages in thread
From: Michael Olbrich @ 2023-01-10 8:02 UTC (permalink / raw)
To: Philipp Zabel; +Cc: ptxdist
On Mon, Jan 09, 2023 at 02:46:16PM +0100, Philipp Zabel wrote:
> Ignore new Meson builtin options "pkgconfig.relocatable" and
> "prefer_static" (since 0.63).
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> scripts/configure_helper.py | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
> index 86dee3416d08..f515f6e0b1bb 100755
> --- a/scripts/configure_helper.py
> +++ b/scripts/configure_helper.py
> @@ -149,6 +149,8 @@ meson_blacklist = [
> "mandir",
> "optimization",
> "pkg_config_path",
> + "pkgconfig.relocatable",
Hmmm, if I understand this correctly then we may want to set this option to
true once we update to meson 0.63. I think we hack the .pc files afterwards
to do the same thing.
Michael
> + "prefer_static",
> "python.install_env",
> "python.platlibdir",
> "python.purelibdir",
> --
> 2.30.2
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options
2023-01-10 8:02 ` Michael Olbrich
@ 2023-01-11 10:24 ` Philipp Zabel
0 siblings, 0 replies; 5+ messages in thread
From: Philipp Zabel @ 2023-01-11 10:24 UTC (permalink / raw)
To: ptxdist
On Di, 2023-01-10 at 09:02 +0100, Michael Olbrich wrote:
> On Mon, Jan 09, 2023 at 02:46:16PM +0100, Philipp Zabel wrote:
> > Ignore new Meson builtin options "pkgconfig.relocatable" and
> > "prefer_static" (since 0.63).
> >
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> > ---
> > scripts/configure_helper.py | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
> > index 86dee3416d08..f515f6e0b1bb 100755
> > --- a/scripts/configure_helper.py
> > +++ b/scripts/configure_helper.py
> > @@ -149,6 +149,8 @@ meson_blacklist = [
> > "mandir",
> > "optimization",
> > "pkg_config_path",
> > + "pkgconfig.relocatable",
>
> Hmmm, if I understand this correctly then we may want to set this option to
> true once we update to meson 0.63. I think we hack the .pc files afterwards
> to do the same thing.
https://lore.ptxdist.org/ptxdist/20230111101916.3749538-2-p.zabel@pengutronix.de/T/#u
regards
Philipp
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options
2023-01-09 13:46 [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options Philipp Zabel
2023-01-10 8:02 ` Michael Olbrich
@ 2023-01-30 9:37 ` Philipp Zabel
2023-02-10 11:01 ` Michael Olbrich
1 sibling, 1 reply; 5+ messages in thread
From: Philipp Zabel @ 2023-01-30 9:37 UTC (permalink / raw)
To: ptxdist
On Mon, Jan 09, 2023 at 02:46:16PM +0100, Philipp Zabel wrote:
> Ignore new Meson builtin options "pkgconfig.relocatable" and
> "prefer_static" (since 0.63).
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Looks like this one fell through the cracks.
As of commit f4c1eef53247 ("host-meson: version bump 0.61.4 -> 1.0.0")
we have Meson with these options available.
regards
Philipp
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options
2023-01-30 9:37 ` Philipp Zabel
@ 2023-02-10 11:01 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2023-02-10 11:01 UTC (permalink / raw)
To: Philipp Zabel; +Cc: ptxdist
On Mon, Jan 30, 2023 at 10:37:44AM +0100, Philipp Zabel wrote:
> On Mon, Jan 09, 2023 at 02:46:16PM +0100, Philipp Zabel wrote:
> > Ignore new Meson builtin options "pkgconfig.relocatable" and
> > "prefer_static" (since 0.63).
> >
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
>
> Looks like this one fell through the cracks.
>
> As of commit f4c1eef53247 ("host-meson: version bump 0.61.4 -> 1.0.0")
> we have Meson with these options available.
pkgconfig.relocatable is added to the options, so it should not be needed
here. So this patch need updating.
Michael
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-02-10 11:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-09 13:46 [ptxdist] [PATCH] configure_helper: ignore new Meson 0.63 builtin options Philipp Zabel
2023-01-10 8:02 ` Michael Olbrich
2023-01-11 10:24 ` Philipp Zabel
2023-01-30 9:37 ` Philipp Zabel
2023-02-10 11:01 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox