mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 21:09:31 -04:00
27 lines
919 B
C
27 lines
919 B
C
$NetBSD: patch-libgcc_unwind-dw2-fde-dip.c,v 1.2 2013/04/24 14:31:51 adam Exp $
|
|
|
|
Add dl_iterate_phdr error handling support for all BSDs. The NetBSD and
|
|
OpenBSD code will not run until dl_iterate_phdr detection in the configure
|
|
script is uncommented.
|
|
|
|
--- libgcc/unwind-dw2-fde-dip.c.orig 2012-10-06 21:55:06.000000000 +0000
|
|
+++ libgcc/unwind-dw2-fde-dip.c
|
|
@@ -54,13 +54,15 @@
|
|
#endif
|
|
|
|
#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \
|
|
- && defined(__FreeBSD__) && __FreeBSD__ >= 7
|
|
+ && defined(TARGET_DL_ITERATE_PHDR) \
|
|
+ && (defined(__FreeBSD__) || defined(__DragonFly__))
|
|
# define ElfW __ElfN
|
|
# define USE_PT_GNU_EH_FRAME
|
|
#endif
|
|
|
|
#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \
|
|
- && defined(__OpenBSD__)
|
|
+ && defined(TARGET_DL_ITERATE_PHDR) \
|
|
+ && (defined(__OpenBSD__) || defined(__NetBSD__))
|
|
# define ElfW(type) Elf_##type
|
|
# define USE_PT_GNU_EH_FRAME
|
|
#endif
|