Date: Mon, 4 Oct 2021 11:16:16 GMT From: Rainer Hurling <rhurlin@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: fa9a7b9c50ba - main - graphics/xaos: Fix build on HEAD Message-ID: <202110041116.194BGG3d007741@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rhurlin: URL: https://cgit.FreeBSD.org/ports/commit/?id=fa9a7b9c50badbb469594f77af4f31435df3a767 commit fa9a7b9c50badbb469594f77af4f31435df3a767 Author: Joerg Preiss <joerg.preiss@slesa.de> AuthorDate: 2021-10-04 11:05:50 +0000 Commit: Rainer Hurling <rhurlin@FreeBSD.org> CommitDate: 2021-10-04 11:05:50 +0000 graphics/xaos: Fix build on HEAD Add clocale include in src/ui/main.cpp where LC_NUMERIC was missing. Pass maintainership to submitter. PR: 258893 --- graphics/xaos/Makefile | 2 +- graphics/xaos/files/patch-src_ui_main.cpp | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/graphics/xaos/Makefile b/graphics/xaos/Makefile index 6737eb5d142f..4f5d8dc757d6 100644 --- a/graphics/xaos/Makefile +++ b/graphics/xaos/Makefile @@ -6,7 +6,7 @@ DISTVERSION= 4.2.1 PORTREVISION= 1 CATEGORIES= graphics math -MAINTAINER= ports@FreeBSD.org +MAINTAINER= joerg.preiss@slesa.de COMMENT= Real-time interactive fractal browser LICENSE= GPLv2 diff --git a/graphics/xaos/files/patch-src_ui_main.cpp b/graphics/xaos/files/patch-src_ui_main.cpp new file mode 100644 index 000000000000..edf3d3fdaef5 --- /dev/null +++ b/graphics/xaos/files/patch-src_ui_main.cpp @@ -0,0 +1,10 @@ +--- src/ui/main.cpp.orig 2021-01-18 09:29:00 UTC ++++ src/ui/main.cpp +@@ -23,6 +23,7 @@ + #include <cctype> + #include <cerrno> + #include <climits> ++#include <clocale> + #include <cmath> + #include <csignal> + #include <cstdlib>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110041116.194BGG3d007741>