Date: Sat, 7 Jan 2023 08:49:33 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: f233efc3f362 - main - math/or-tools: Patch missing #include <errno.h> problem Message-ID: <202301070849.3078nXqM070319@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=f233efc3f36269fb570677e3b2ee9dace1ec7dd7 commit f233efc3f36269fb570677e3b2ee9dace1ec7dd7 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2023-01-07 08:48:31 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2023-01-07 08:48:31 +0000 math/or-tools: Patch missing #include <errno.h> problem It caused breakage on FreeBSD 12. Reported by: portscout --- math/or-tools/files/patch-ortools_base_numbers.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/math/or-tools/files/patch-ortools_base_numbers.cc b/math/or-tools/files/patch-ortools_base_numbers.cc new file mode 100644 index 000000000000..0fb41bd3adc4 --- /dev/null +++ b/math/or-tools/files/patch-ortools_base_numbers.cc @@ -0,0 +1,13 @@ +- workaround for https://github.com/google/or-tools/issues/3622 + +--- ortools/base/numbers.cc.orig 2023-01-07 08:24:55 UTC ++++ ortools/base/numbers.cc +@@ -23,6 +23,8 @@ + #include <memory> + #include <string> + ++#include <errno.h> ++ + // #include "ortools/base/logging.h" + #include "absl/strings/ascii.h" + #include "ortools/base/strtoint.h"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301070849.3078nXqM070319>