diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-23 22:39:19 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-23 22:39:19 -0600 |
commit | 222fb21c28d6250196100eb89ff6a076c703fd5c (patch) | |
tree | 7d6d42648c34bd6e21bae829c3fc8fed3cc2c1db /system/libexecinfo/20-define-gnu-source.patch | |
parent | 934414d79caa3489077e4f442bf023bca0e06614 (diff) | |
download | packages-222fb21c28d6250196100eb89ff6a076c703fd5c.tar.gz packages-222fb21c28d6250196100eb89ff6a076c703fd5c.tar.bz2 packages-222fb21c28d6250196100eb89ff6a076c703fd5c.tar.xz packages-222fb21c28d6250196100eb89ff6a076c703fd5c.zip |
user/libexecinfo: move to system/ repository
This is required by CMake 3.15+; the dependency wasn't noticed because
a full distro rebuild hasn't been done since before the CMake bump.
Diffstat (limited to 'system/libexecinfo/20-define-gnu-source.patch')
-rw-r--r-- | system/libexecinfo/20-define-gnu-source.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/system/libexecinfo/20-define-gnu-source.patch b/system/libexecinfo/20-define-gnu-source.patch new file mode 100644 index 000000000..ac18f6eeb --- /dev/null +++ b/system/libexecinfo/20-define-gnu-source.patch @@ -0,0 +1,24 @@ +--- a/execinfo.c ++++ b/execinfo.c +@@ -26,6 +26,7 @@ + * $Id: execinfo.c,v 1.3 2004/07/19 05:21:09 sobomax Exp $ + */ + ++#define _GNU_SOURCE + #include <sys/types.h> + #include <sys/uio.h> + #include <dlfcn.h> +--- a/stacktraverse.c ++++ b/stacktraverse.c +@@ -1,3 +1,4 @@ ++#define _GNU_SOURCE + #include <stddef.h> + + #include "stacktraverse.h" +--- a/test.c ++++ b/test.c +@@ -1,3 +1,4 @@ ++#define _GNU_SOURCE + #include <stdio.h> + #include <stdlib.h> + |