aboutsummaryrefslogtreecommitdiff
path: root/libraries/log4cpp/gcc43.patch
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2021-10-02 21:15:13 +0200
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2021-10-09 13:10:51 +0700
commit8d995f8f2bf1ee91063675140b31485fef6d3dc0 (patch)
treed18c4c120aaab1f672dcff052ae13b0d10066b31 /libraries/log4cpp/gcc43.patch
parentb663ef4d046fd263f1d16c39bd069d639874b609 (diff)
libraries/log4cpp: Updated for version 1.1.3.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/log4cpp/gcc43.patch')
-rw-r--r--libraries/log4cpp/gcc43.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/libraries/log4cpp/gcc43.patch b/libraries/log4cpp/gcc43.patch
deleted file mode 100644
index a60f986e9c0dd..0000000000000
--- a/libraries/log4cpp/gcc43.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Index: log4cpp-1.0/src/BasicLayout.cpp
-===================================================================
---- log4cpp-1.0.orig/src/BasicLayout.cpp 2008-03-14 16:06:57.000000000 -0400
-+++ log4cpp-1.0/src/BasicLayout.cpp 2008-03-14 16:07:11.000000000 -0400
-@@ -15,6 +15,8 @@
- #include <sstream>
- #endif
-
-+#include <memory>
-+
- namespace log4cpp {
-
- BasicLayout::BasicLayout() {
-Index: log4cpp-1.0/src/PatternLayout.cpp
-===================================================================
---- log4cpp-1.0.orig/src/PatternLayout.cpp 2008-03-14 16:07:33.000000000 -0400
-+++ log4cpp-1.0/src/PatternLayout.cpp 2008-03-14 16:07:49.000000000 -0400
-@@ -370,7 +370,7 @@
- literal = "";
- }
- if ((minWidth != 0) || (maxWidth != 0)) {
-- component = new FormatModifierComponent(component, std::abs(minWidth), maxWidth, minWidth < 0);
-+ component = new FormatModifierComponent(component, std::abs((float)minWidth), maxWidth, minWidth < 0);
- minWidth = maxWidth = 0;
- }
- _components.push_back(component);