summaryrefslogtreecommitdiff
path: root/app-office/ledger/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-06-15 14:57:03 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-06-15 14:57:03 +0100
commitd18bf1e01b65ee4bf0c804e2843b282d3d4e5d7c (patch)
tree4a95cbc6ffdf13bad6ecbc7f8d5af99631984123 /app-office/ledger/files
parente748ba9741f6540f4675c23e3e37b73e822c13a4 (diff)
gentoo resync : 15.06.2021
Diffstat (limited to 'app-office/ledger/files')
-rw-r--r--app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch b/app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch
new file mode 100644
index 000000000000..eff3e335f42e
--- /dev/null
+++ b/app-office/ledger/files/ledger-3.2.1-fix-build-boost-1-76.patch
@@ -0,0 +1,29 @@
+https://bugs.gentoo.org/790176
+https://github.com/ledger/ledger/issues/2030
+
+From fa37f595b3c44dc7ac86b29d105ae6417c3e0080 Mon Sep 17 00:00:00 2001
+From: Sam James <sam@gentoo.org>
+Date: Mon, 14 Jun 2021 12:37:58 +0000
+Subject: [PATCH] Fix compilation with Boost 1.76
+--- a/src/expr.cc
++++ b/src/expr.cc
+@@ -35,6 +35,8 @@
+ #include "parser.h"
+ #include "scope.h"
+
++#include <boost/smart_ptr/scoped_ptr.hpp>
++
+ namespace ledger {
+
+ expr_t::expr_t() : base_type()
+--- a/src/format.h
++++ b/src/format.h
+@@ -45,6 +45,8 @@
+ #include "expr.h"
+ #include "unistring.h"
+
++#include <boost/smart_ptr/scoped_ptr.hpp>
++
+ namespace ledger {
+
+ class unistring;