1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

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
This commit is contained in:
Joerg Preiss 2021-10-04 13:05:50 +02:00 committed by Rainer Hurling
parent 3170876d25
commit fa9a7b9c50
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -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>