diff options
| author | Michael Forney <mforney@mforney.org> | 2021-04-29 12:46:26 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2021-05-01 01:48:08 -0700 |
| commit | e5b9ffd458933b9f68a6609b96d308192b2dbd86 (patch) | |
| tree | 8795840b9bfbba8a5622f971236392433151e8c0 /pkg/elftoolchain/patch/0003-Prevent-empty-top-level-declarations.patch | |
| parent | 7a3b81ed5f3d4707f0cdacdc01d0c90816e4be30 (diff) | |
elftoolchain: Update to latest git
Diffstat (limited to 'pkg/elftoolchain/patch/0003-Prevent-empty-top-level-declarations.patch')
| -rw-r--r-- | pkg/elftoolchain/patch/0003-Prevent-empty-top-level-declarations.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/pkg/elftoolchain/patch/0003-Prevent-empty-top-level-declarations.patch b/pkg/elftoolchain/patch/0003-Prevent-empty-top-level-declarations.patch deleted file mode 100644 index 9a5c45e2..00000000 --- a/pkg/elftoolchain/patch/0003-Prevent-empty-top-level-declarations.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 9f83cd2e4af19212d26cdacf07d4b86262106383 Mon Sep 17 00:00:00 2001 -From: Michael Forney <mforney@mforney.org> -Date: Tue, 2 Jul 2019 23:49:18 -0700 -Subject: [PATCH] Prevent empty top-level declarations - ---- - common/_elftc.h | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/common/_elftc.h b/common/_elftc.h -index c3df36cb..f0da3d00 100644 ---- a/common/_elftc.h -+++ b/common/_elftc.h -@@ -299,7 +299,7 @@ struct name { \ - #if defined(__GNUC__) - #define ELFTC_VCSID(ID) __asm__(".ident\t\"" ID "\"") - #else --#define ELFTC_VCSID(ID) /**/ -+#define ELFTC_VCSID(ID) _Static_assert(1, "") - #endif - #endif - -@@ -307,19 +307,19 @@ struct name { \ - #if defined(__GNUC__) - #define ELFTC_VCSID(ID) __asm__(".ident\t\"" ID "\"") - #else --#define ELFTC_VCSID(ID) /**/ -+#define ELFTC_VCSID(ID) _Static_assert(1, "") - #endif /* __GNU__ */ - #endif - - #if defined(__NetBSD__) --#define ELFTC_VCSID(ID) __RCSID(ID) -+#define ELFTC_VCSID(ID) _Static_assert(1, "") - #endif - - #if defined(__OpenBSD__) - #if defined(__GNUC__) - #define ELFTC_VCSID(ID) __asm__(".ident\t\"" ID "\"") - #else --#define ELFTC_VCSID(ID) /**/ -+#define ELFTC_VCSID(ID) _Static_assert(1, "") - #endif /* __GNUC__ */ - #endif - --- -2.22.0 - |
