summaryrefslogtreecommitdiff
path: root/app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch')
-rw-r--r--app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch b/app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch
deleted file mode 100644
index 494fc51c3b88..000000000000
--- a/app-editors/xemacs/files/xemacs-21.4.24-gcc5.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff -r e2da872593c0 configure.in
---- a/configure.in Tue Mar 24 22:15:53 2015 -0400
-+++ b/configure.in Sun Mar 13 13:48:24 2016 +0100
-@@ -1939,6 +1939,8 @@
- CFLAGS="-g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes"
- dnl Yuck, bad compares have been worth at least 3 crashes!
- CFLAGS="$CFLAGS -Wsign-compare"
-+ dnl Use old gnu inline semantics until we fix the source
-+ CFLAGS="$CFLAGS -fgnu89-inline"
- dnl XEmacs is known not to be strict-aliasing-safe.
- case "`gcc -v --help 2>&1`" in
- *-fstrict-aliasing* ) CFLAGS="$CFLAGS -fno-strict-aliasing" ;;
-diff -r e2da872593c0 src/lisp.h
---- a/src/lisp.h Tue Mar 24 22:15:53 2015 -0400
-+++ b/src/lisp.h Sun Mar 13 13:48:24 2016 +0100
-@@ -193,6 +193,8 @@
- # endif /* GNUC */
- #endif
-
-+#ifndef _GCC_MAX_ALIGN_T
-+#define _GCC_MAX_ALIGN_T
- /* No type has a greater alignment requirement than max_align_t.
- (except perhaps for types we don't use, like long double) */
- typedef union
-@@ -202,6 +204,7 @@
- struct { void (*f)(void); } f;
- struct { double d; } d;
- } max_align_t;
-+#endif
-
- #ifndef ALIGNOF
- # if defined (__GNUC__) && (__GNUC__ >= 2)