[153833] trunk/dports/devel/libunwind
jeremyhu at macports.org
jeremyhu at macports.org
Thu Oct 13 05:40:02 CEST 2016
Revision: 153833
https://trac.macports.org/changeset/153833
Author: jeremyhu at macports.org
Date: 2016-10-12 20:40:02 -0700 (Wed, 12 Oct 2016)
Log Message:
-----------
libunwind: Bump to 3.9.0
Modified Paths:
--------------
trunk/dports/devel/libunwind/Portfile
trunk/dports/devel/libunwind/files/0001-libunwind-Add-missing-include-of-libunwind_ext.h-to-.patch
trunk/dports/devel/libunwind/files/0002-libunwind-Use-__builtin_trap-rather-than-__builtin_u.patch
trunk/dports/devel/libunwind/files/0003-libunwind-ppc-build-fix.patch
trunk/dports/devel/libunwind/files/0004-libunwind-Only-include-Availability.h-on-Leopard-and.patch
trunk/dports/devel/libunwind/files/0005-libunwind-MacPorts-availability.patch
trunk/dports/devel/libunwind/files/0006-MacPorts-Makefile.patch
trunk/dports/devel/libunwind/files/0007-libunwind-Fix-fallback-implementation-of-_dyld_find_.patch
trunk/dports/devel/libunwind/files/0008-Define-__STDC_FORMAT_MACROS-to-bring-in-format-macro.patch
Removed Paths:
-------------
trunk/dports/devel/libunwind/files/0009-libunwind-Remove-unused-includes.patch
Modified: trunk/dports/devel/libunwind/Portfile
===================================================================
--- trunk/dports/devel/libunwind/Portfile 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/Portfile 2016-10-13 03:40:02 UTC (rev 153833)
@@ -4,8 +4,8 @@
PortGroup compiler_blacklist_versions 1.0
name libunwind
-version 3.7.0
-subport ${name}-headers { revision 1 }
+version 3.9.0
+subport ${name}-headers {}
epoch 1
categories devel
platforms darwin
@@ -25,8 +25,8 @@
use_xz yes
distname ${name}-${version}.src
-checksums rmd160 56e622026b30102174f7dcd38a4cc391956e2bd1 \
- sha256 6a600f30b9f3a54a1faf8c2dfd12522a0c90eb65f1aad63fec540aa27bcaca5b
+checksums rmd160 0181a9c886032a9a24a35e4286d99bf64917eff6 \
+ sha256 66675ddec5ba0d36689757da6008cb2596ee1a9067f4f598d89ce5a3b43f4c2b
use_configure no
@@ -40,7 +40,6 @@
0006-MacPorts-Makefile.patch \
0007-libunwind-Fix-fallback-implementation-of-_dyld_find_.patch \
0008-Define-__STDC_FORMAT_MACROS-to-bring-in-format-macro.patch \
- 0009-libunwind-Remove-unused-includes.patch \
clang-3.4-workaround.patch
post-patch {
Modified: trunk/dports/devel/libunwind/files/0001-libunwind-Add-missing-include-of-libunwind_ext.h-to-.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0001-libunwind-Add-missing-include-of-libunwind_ext.h-to-.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0001-libunwind-Add-missing-include-of-libunwind_ext.h-to-.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,13 +1,12 @@
-From 54a1dd57e9f610addbe8b48ad3bce36b71fdeff6 Mon Sep 17 00:00:00 2001
+From 75444ad8aafbc3e6ed1722c3acaa371a26b5c39c Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sun, 11 Jan 2015 14:28:08 -0800
-Subject: [PATCH 1/9] libunwind: Add missing include of libunwind_ext.h to
+Subject: [PATCH 1/8] libunwind: Add missing include of libunwind_ext.h to
CompactUnwinder.hpp, DwarfInstructions.hpp, and UnwindCursor.hpp
http://www.llvm.org/bugs/show_bug.cgi?id=22202
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
-(cherry picked from commit e80eb74721aab2cb6cea3bd24f3e6519741d211b)
---
src/CompactUnwinder.hpp | 1 +
src/DwarfInstructions.hpp | 2 +-
@@ -15,7 +14,7 @@
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/CompactUnwinder.hpp b/src/CompactUnwinder.hpp
-index cd9ce3e..44de2c6 100644
+index 1be1b0b..5e0060f 100644
--- a/src/CompactUnwinder.hpp
+++ b/src/CompactUnwinder.hpp
@@ -21,6 +21,7 @@
@@ -27,7 +26,7 @@
#define EXTRACT_BITS(value, mask) \
((value >> __builtin_ctz(mask)) & (((1 << __builtin_popcount(mask))) - 1))
diff --git a/src/DwarfInstructions.hpp b/src/DwarfInstructions.hpp
-index dfe45fb..c2d293f 100644
+index 9494bb8..9acb3be 100644
--- a/src/DwarfInstructions.hpp
+++ b/src/DwarfInstructions.hpp
@@ -22,7 +22,7 @@
@@ -40,10 +39,10 @@
namespace libunwind {
diff --git a/src/UnwindCursor.hpp b/src/UnwindCursor.hpp
-index 59924f0..ba04a4d 100644
+index 4ed5a6e..25f0ca4 100644
--- a/src/UnwindCursor.hpp
+++ b/src/UnwindCursor.hpp
-@@ -31,6 +31,7 @@
+@@ -33,6 +33,7 @@
#include "DwarfInstructions.hpp"
#include "EHHeaderParser.hpp"
#include "libunwind.h"
@@ -52,5 +51,5 @@
#include "Unwind-EHABI.h"
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0002-libunwind-Use-__builtin_trap-rather-than-__builtin_u.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0002-libunwind-Use-__builtin_trap-rather-than-__builtin_u.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0002-libunwind-Use-__builtin_trap-rather-than-__builtin_u.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,19 +1,18 @@
-From 22b584a1f23f02d79d041b3992f0a2d0ad4012c5 Mon Sep 17 00:00:00 2001
+From 48545458fdae89d84f692a3db8eeadd099d6efa5 Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sun, 11 Jan 2015 14:34:13 -0800
-Subject: [PATCH 2/9] libunwind: Use __builtin_trap rather than
+Subject: [PATCH 2/8] libunwind: Use __builtin_trap rather than
__builtin_unreachable for older toolchains
http://www.llvm.org/bugs/show_bug.cgi?id=22198
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
-(cherry picked from commit 9fca7c785d17c8028ba87e8eb16c4c30283554b2)
---
src/DwarfInstructions.hpp | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/DwarfInstructions.hpp b/src/DwarfInstructions.hpp
-index c2d293f..ccc5f6c 100644
+index 9acb3be..712a0ec 100644
--- a/src/DwarfInstructions.hpp
+++ b/src/DwarfInstructions.hpp
@@ -72,7 +72,9 @@ private:
@@ -28,5 +27,5 @@
};
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0003-libunwind-ppc-build-fix.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0003-libunwind-ppc-build-fix.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0003-libunwind-ppc-build-fix.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,52 +1,35 @@
-From 318ae788721a364c2da33562ceb18dc7038b8fc2 Mon Sep 17 00:00:00 2001
+From 47843087d4e8c4cc81711cddd2397af13bac96bf Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sun, 11 Jan 2015 14:35:08 -0800
-Subject: [PATCH 3/9] libunwind: ppc build fix
+Subject: [PATCH 3/8] libunwind: ppc build fix
http://www.llvm.org/bugs/show_bug.cgi?id=22200
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
-(cherry picked from commit 04f8bc664c2ef42d9d7e31c917bc3d0e0a54578c)
---
- src/config.h | 12 ++++++++++--
- 1 file changed, 10 insertions(+), 2 deletions(-)
+ src/config.h | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/config.h b/src/config.h
-index c9ec087..123eef1 100644
+index 8743f53..cfe7706 100644
--- a/src/config.h
+++ b/src/config.h
-@@ -41,10 +41,14 @@
+@@ -61,13 +61,14 @@
+ #define _LIBUNWIND_BUILD_SJLJ_APIS 0
+ #endif
- #define _LIBUNWIND_BUILD_ZERO_COST_APIS (defined(__i386__) || \
- defined(__x86_64__) || \
-+ defined(__ppc__) || \
-+ defined(__ppc64__) || \
- defined(__arm64__))
- #define _LIBUNWIND_BUILD_SJLJ_APIS defined(__arm__)
- #define _LIBUNWIND_SUPPORT_FRAME_APIS (defined(__i386__) || \
-- defined(__x86_64__))
-+ defined(__x86_64__) || \
-+ defined(__ppc__) || \
-+ defined(__ppc64__))
- #define _LIBUNWIND_EXPORT __attribute__((visibility("default")))
- #define _LIBUNWIND_HIDDEN __attribute__((visibility("hidden")))
- #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__)
-@@ -72,10 +76,14 @@
+-#if defined(__i386__) || defined(__x86_64__)
++#if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__ppc64__)
+ #define _LIBUNWIND_SUPPORT_FRAME_APIS 1
+ #else
+ #define _LIBUNWIND_SUPPORT_FRAME_APIS 0
+ #endif
- #define _LIBUNWIND_BUILD_ZERO_COST_APIS (defined(__i386__) || \
- defined(__x86_64__) || \
-+ defined(__ppc__) || \
-+ defined(__ppc64__) || \
- defined(__arm__))
- #define _LIBUNWIND_BUILD_SJLJ_APIS 0
- #define _LIBUNWIND_SUPPORT_FRAME_APIS (defined(__i386__) || \
-- defined(__x86_64__))
-+ defined(__x86_64__) || \
-+ defined(__ppc__) || \
-+ defined(__ppc64__))
- #define _LIBUNWIND_EXPORT __attribute__((visibility("default")))
- #define _LIBUNWIND_HIDDEN __attribute__((visibility("hidden")))
- #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__)
+ #if defined(__i386__) || defined(__x86_64__) || \
++ defined(__ppc__) || defined(__ppc64__) || \
+ (!defined(__APPLE__) && defined(__arm__)) || \
+ (defined(__arm64__) || defined(__aarch64__)) || \
+ (defined(__APPLE__) && defined(__mips__))
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0004-libunwind-Only-include-Availability.h-on-Leopard-and.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0004-libunwind-Only-include-Availability.h-on-Leopard-and.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0004-libunwind-Only-include-Availability.h-on-Leopard-and.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,20 +1,18 @@
-From 47c5147e57318333ea446f2cb568a992b23f082f Mon Sep 17 00:00:00 2001
+From 3300cf61a636d04ff03e4d5fd1209403c0b09eeb Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sun, 11 Jan 2015 19:24:43 -0800
-Subject: [PATCH 4/9] libunwind: Only include <Availability.h> on Leopard and
+Subject: [PATCH 4/8] libunwind: Only include <Availability.h> on Leopard and
newer OS X versions
http://www.llvm.org/bugs/show_bug.cgi?id=22203
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
-(cherry picked from commit 15cc2c11afe656d450cfd6f80266491aaf096960)
---
include/libunwind.h | 22 ++++++++++++++++++----
- src/config.h | 9 ++++++++-
- 2 files changed, 26 insertions(+), 5 deletions(-)
+ 1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/include/libunwind.h b/include/libunwind.h
-index 4a75a7b..315a802 100644
+index b52fe9d..8ac4970 100644
--- a/include/libunwind.h
+++ b/include/libunwind.h
@@ -20,12 +20,26 @@
@@ -48,26 +46,6 @@
#else
#define LIBUNWIND_AVAIL
#endif
-diff --git a/src/config.h b/src/config.h
-index 123eef1..1cbf057 100644
---- a/src/config.h
-+++ b/src/config.h
-@@ -29,7 +29,14 @@
-
- // Platform specific configuration defines.
- #ifdef __APPLE__
-- #include <Availability.h>
-+ #if __clang__
-+ #if __has_include(<Availability.h>)
-+ #include <Availability.h>
-+ #endif
-+ #elif __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1050
-+ #include <Availability.h>
-+ #endif
-+
- #ifdef __cplusplus
- extern "C" {
- #endif
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0005-libunwind-MacPorts-availability.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0005-libunwind-MacPorts-availability.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0005-libunwind-MacPorts-availability.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,16 +1,15 @@
-From b95b54d6cc96c0585d82a3787fbfbd8223400f73 Mon Sep 17 00:00:00 2001
+From 11950957207c44f826fdf879eb7a14b44cc07ce2 Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sun, 4 Jan 2015 13:21:39 -0800
-Subject: [PATCH 5/9] libunwind: MacPorts availability
+Subject: [PATCH 5/8] libunwind: MacPorts availability
-(cherry picked from commit 7400dc78d11961f50fd3f4af7fc13a7ac5555776)
---
include/libunwind.h | 2 +-
src/Unwind_AppleExtras.cpp | 36 ++----------------------------------
2 files changed, 3 insertions(+), 35 deletions(-)
diff --git a/include/libunwind.h b/include/libunwind.h
-index 315a802..0d6f584 100644
+index 8ac4970..4d34ce5 100644
--- a/include/libunwind.h
+++ b/include/libunwind.h
@@ -19,7 +19,7 @@
@@ -23,7 +22,7 @@
#if __has_include(<Availability.h>)
#include <Availability.h>
diff --git a/src/Unwind_AppleExtras.cpp b/src/Unwind_AppleExtras.cpp
-index b8baef5..078aa86 100644
+index d8301c0..38281fd 100644
--- a/src/Unwind_AppleExtras.cpp
+++ b/src/Unwind_AppleExtras.cpp
@@ -41,40 +41,8 @@ struct libgcc_object_info {
@@ -70,5 +69,5 @@
#if _LIBUNWIND_BUILD_ZERO_COST_APIS
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0006-MacPorts-Makefile.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0006-MacPorts-Makefile.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0006-MacPorts-Makefile.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,18 +1,17 @@
-From 0ebb44471d513364d5bb9d9c1bb223329c45a8ab Mon Sep 17 00:00:00 2001
+From 6cf7588091bbd16ff08eedc8aba84393c7459f01 Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Tue, 20 Jan 2015 10:23:13 -0800
-Subject: [PATCH 6/9] MacPorts Makefile
+Subject: [PATCH 6/8] MacPorts Makefile
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
-(cherry picked from commit 4501b3591276ceb3e88099ad653d727eb83f4789)
---
- src/Makefile | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- 1 file changed, 132 insertions(+)
+ src/Makefile | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 1 file changed, 133 insertions(+)
create mode 100644 src/Makefile
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
-index 0000000..5f62885
+index 0000000..d788822
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,133 @@
@@ -150,5 +149,5 @@
+clean:
+ rm -f $(OBJROOT)/*.o $(OBJROOT)/*.a $(OBJROOT)/*.dylib
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0007-libunwind-Fix-fallback-implementation-of-_dyld_find_.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0007-libunwind-Fix-fallback-implementation-of-_dyld_find_.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0007-libunwind-Fix-fallback-implementation-of-_dyld_find_.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,23 +1,22 @@
-From eea9d5c90d114e32fa0e66f357dbe2f7f4077919 Mon Sep 17 00:00:00 2001
+From 9b0ab675001b2c62cee59aecaaf88c41b63feb49 Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sun, 4 Jan 2015 13:30:53 -0800
-Subject: [PATCH 7/9] libunwind: Fix fallback implementation of
+Subject: [PATCH 7/8] libunwind: Fix fallback implementation of
_dyld_find_unwind_sections for x86_64 and document dependency on a newer
libmacho
http://www.llvm.org/bugs/show_bug.cgi?id=22270
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
-(cherry picked from commit 4d644e4bfc1b3b430cb5edec884f1a24a9b8de80)
---
src/AddressSpace.hpp | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/src/AddressSpace.hpp b/src/AddressSpace.hpp
-index 567cbda..2554e11 100644
+index ec9fb36..42431a6 100644
--- a/src/AddressSpace.hpp
+++ b/src/AddressSpace.hpp
-@@ -316,14 +316,20 @@ LocalAddressSpace::getEncodedP(pint_t &addr, pint_t end, uint8_t encoding,
+@@ -321,14 +321,20 @@ LocalAddressSpace::getEncodedP(pint_t &addr, pint_t end, uint8_t encoding,
// In 10.7.0 or later, libSystem.dylib implements this function.
extern "C" bool _dyld_find_unwind_sections(void *, dyld_unwind_sections *);
#else
@@ -38,9 +37,9 @@
+ const struct mach_header *mh = (const struct mach_header *)dlinfo.dli_saddr;
+#endif
- // Find dwarf unwind section in that image.
+ // Find DWARF unwind section in that image.
unsigned long size;
-@@ -332,7 +338,7 @@ LocalAddressSpace::getEncodedP(pint_t &addr, pint_t end, uint8_t encoding,
+@@ -337,7 +343,7 @@ LocalAddressSpace::getEncodedP(pint_t &addr, pint_t end, uint8_t encoding,
return false;
// Fill in return struct.
@@ -50,5 +49,5 @@
info->dwarf_section_length = size;
info->compact_unwind_section = 0;
--
-2.6.2
+2.10.1
Modified: trunk/dports/devel/libunwind/files/0008-Define-__STDC_FORMAT_MACROS-to-bring-in-format-macro.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0008-Define-__STDC_FORMAT_MACROS-to-bring-in-format-macro.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0008-Define-__STDC_FORMAT_MACROS-to-bring-in-format-macro.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,20 +1,19 @@
-From f91d9bfa17478442902517e56199c796ae57efd6 Mon Sep 17 00:00:00 2001
+From 10fb66425425c4d01f2c3a95a59869b200bb6969 Mon Sep 17 00:00:00 2001
From: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
Date: Sat, 7 Mar 2015 19:58:56 -0800
-Subject: [PATCH 8/9] Define __STDC_FORMAT_MACROS to bring in format macros
+Subject: [PATCH 8/8] Define __STDC_FORMAT_MACROS to bring in format macros
when including <inttypes.h> in C++ code
Fixes regression from: 1f22bd54e8565959c1d2c3ed7384cb77e18d0807
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu at apple.com>
CC: Dan Albert <danalbert at google.com>
-(cherry picked from commit e02479718191c6aa63a23b2a5029a69906ba3d76)
---
src/DwarfParser.hpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/DwarfParser.hpp b/src/DwarfParser.hpp
-index f6ef738..0c24dc6 100644
+index 62c047b..150272a 100644
--- a/src/DwarfParser.hpp
+++ b/src/DwarfParser.hpp
@@ -13,6 +13,7 @@
@@ -26,5 +25,5 @@
#include <stdint.h>
#include <stdio.h>
--
-2.6.2
+2.10.1
Deleted: trunk/dports/devel/libunwind/files/0009-libunwind-Remove-unused-includes.patch
===================================================================
--- trunk/dports/devel/libunwind/files/0009-libunwind-Remove-unused-includes.patch 2016-10-13 02:46:54 UTC (rev 153832)
+++ trunk/dports/devel/libunwind/files/0009-libunwind-Remove-unused-includes.patch 2016-10-13 03:40:02 UTC (rev 153833)
@@ -1,55 +0,0 @@
-From fc92ed7ffa081bfc140391060d0dc435d14d5af3 Mon Sep 17 00:00:00 2001
-From: Peter Zotov <whitequark at whitequark.org>
-Date: Thu, 27 Aug 2015 06:58:31 +0000
-Subject: [PATCH 9/9] [libunwind] Remove unused includes.
-
-git-svn-id: https://llvm.org/svn/llvm-project/libunwind/trunk@246143 91177308-0d34-0410-b5e6-96231b3b80d8
-(cherry picked from commit a3e613de71af050c07199eaa53c3675708268dab)
----
- src/DwarfParser.hpp | 2 --
- src/Registers.hpp | 1 -
- src/libunwind.cpp | 3 ---
- 3 files changed, 6 deletions(-)
-
-diff --git a/src/DwarfParser.hpp b/src/DwarfParser.hpp
-index 0c24dc6..a0e7288 100644
---- a/src/DwarfParser.hpp
-+++ b/src/DwarfParser.hpp
-@@ -19,8 +19,6 @@
- #include <stdio.h>
- #include <stdlib.h>
-
--#include <vector>
--
- #include "libunwind.h"
- #include "dwarf2.h"
-
-diff --git a/src/Registers.hpp b/src/Registers.hpp
-index 4a441b7..36653ef 100644
---- a/src/Registers.hpp
-+++ b/src/Registers.hpp
-@@ -14,7 +14,6 @@
- #define __REGISTERS_HPP__
-
- #include <stdint.h>
--#include <strings.h>
- #include <string.h>
-
- #include "libunwind.h"
-diff --git a/src/libunwind.cpp b/src/libunwind.cpp
-index 9a16e48..57e0732 100644
---- a/src/libunwind.cpp
-+++ b/src/libunwind.cpp
-@@ -16,9 +16,6 @@
- #include <cstdlib> // getenv
- #endif
- #include <new>
--#include <tuple>
--#include <memory>
--#include <vector>
- #include <algorithm>
-
- #include "libunwind_ext.h"
---
-2.6.2
-
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macports.org/pipermail/macports-changes/attachments/20161012/21ba1c56/attachment-0002.html>
More information about the macports-changes
mailing list