[Bug 280359] lang/emilua: Update to 0.9.0
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 280359] lang/emilua: Update to 0.9.0"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 19 Jul 2024 02:11:30 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280359 Vladimir Druzenko <vvd@FreeBSD.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People Status|New |In Progress Assignee|ports-bugs@FreeBSD.org |vvd@FreeBSD.org --- Comment #1 from Vladimir Druzenko <vvd@FreeBSD.org> --- Does this really require gcc 12 and can't be built with gcc 13? Also about patch lang/emilua/files/patch-subprojects_asio_meson.build - check this: From 8aa543be97491b5c061cadedfcb2162c4f88c67a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20dos=20Santos=20Oliveira?= <vini.ipsmaker@gmail.com> Date: Fri, 21 Jun 2024 15:43:25 -0300 Subject: [PATCH] Add meson.build The idea is to use the project as a subproject in meson projects. --- meson.build | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 meson.build diff --git a/meson.build b/meson.build new file mode 100644 index 00000000..4d851495 --- subprojects/asio/meson.build.orig 2024-07-19 02:04:16 UTC +++ subprojects/asio/meson.build @@ -0,0 +1,12 @@ +project('asio', + 'cpp', + version : '1.30.2', + license : 'BSL-1.0', +) + +asio_dep = declare_dependency( + include_directories : include_directories('asio/include'), +) + +install_headers('asio/include/asio.hpp') +install_subdir('asio/include/asio', install_dir: get_option('includedir')) -- GitLab And you don't need: @${PATCH} -p1 -d ${WRKSRC}/subprojects/asio < ${FILESDIR}/patch-subprojects_asio_asio_meson.build -- You are receiving this mail because: You are the assignee for the bug.