From d88ffa938eb7fe082d75b525d4bcd5c0dacb7b71 Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Tue, 2 Jan 2018 11:10:08 +0100 Subject: www-client/seamonkey: Removed old. Package-Manager: Portage-2.3.19, Repoman-2.3.6 --- ...ust-contain-fPIC-when-checking-the-linker.patch | 35 ------------- ...-sysmacros.h-for-major-minor-when-availab.patch | 59 ---------------------- 2 files changed, 94 deletions(-) delete mode 100644 www-client/seamonkey/files/0001-CFLAGS-must-contain-fPIC-when-checking-the-linker.patch delete mode 100644 www-client/seamonkey/files/firefox-Include-sys-sysmacros.h-for-major-minor-when-availab.patch (limited to 'www-client/seamonkey/files') diff --git a/www-client/seamonkey/files/0001-CFLAGS-must-contain-fPIC-when-checking-the-linker.patch b/www-client/seamonkey/files/0001-CFLAGS-must-contain-fPIC-when-checking-the-linker.patch deleted file mode 100644 index fe3130e33692..000000000000 --- a/www-client/seamonkey/files/0001-CFLAGS-must-contain-fPIC-when-checking-the-linker.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 4604a80b052456f20187d89e5c3e115ef0bb7251 Mon Sep 17 00:00:00 2001 -From: "Jory A. Pratt" -Date: Mon, 24 Jul 2017 06:10:11 -0500 -Subject: [PATCH] CFLAGS must contain -fPIC when checking the linker - https://bugs.gentoo.org/show_bug.cgi?id=607350 - -Signed-off-by: Jory A. Pratt ---- - mozilla/build/autoconf/compiler-opts.m4 | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/mozilla/build/autoconf/compiler-opts.m4 b/mozilla/build/autoconf/compiler-opts.m4 -index c12d400..639e99e 100644 ---- a/mozilla/build/autoconf/compiler-opts.m4 -+++ b/mozilla/build/autoconf/compiler-opts.m4 -@@ -268,6 +268,8 @@ MOZ_ARG_ENABLE_BOOL(pie, - - if test "$GNU_CC" -a -n "$MOZ_PIE"; then - AC_MSG_CHECKING([for PIE support]) -+ _SAVE_CFLAGS=$CFLAGS -+ CFLAGS="$CFLAGS -fPIC" - _SAVE_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS -pie" - AC_TRY_LINK(,,AC_MSG_RESULT([yes]) -@@ -275,6 +277,8 @@ if test "$GNU_CC" -a -n "$MOZ_PIE"; then - AC_MSG_RESULT([no]) - AC_MSG_ERROR([--enable-pie requires PIE support from the linker.])) - LDFLAGS=$_SAVE_LDFLAGS -+ CFLAGS=$_SAVE_CFLAGS -+ - fi - - AC_SUBST(MOZ_PROGRAM_LDFLAGS) --- -2.13.3 diff --git a/www-client/seamonkey/files/firefox-Include-sys-sysmacros.h-for-major-minor-when-availab.patch b/www-client/seamonkey/files/firefox-Include-sys-sysmacros.h-for-major-minor-when-availab.patch deleted file mode 100644 index 9a3dad17058a..000000000000 --- a/www-client/seamonkey/files/firefox-Include-sys-sysmacros.h-for-major-minor-when-availab.patch +++ /dev/null @@ -1,59 +0,0 @@ -From 5679a9daa463bd038883afe69332ef3807c41442 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Wed, 1 Feb 2017 18:48:02 +0100 -Subject: [PATCH] Include sys/sysmacros.h for major(), minor() when available - -Include sys/sysmacros.h explicitly as that will be required by future -glibc versions to expose major() and minor() macros. - -Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1329798 ---- - build/moz.configure/headers.configure | 4 ++++ - config/system-headers | 1 + - xpcom/io/nsLocalFileUnix.cpp | 3 +++ - 3 files changed, 8 insertions(+) - -diff --git a/build/moz.configure/headers.configure b/build/moz.configure/headers.configure -index 52ffa2f89..53ca44ca4 100644 ---- a/build/moz.configure/headers.configure -+++ b/build/moz.configure/headers.configure -@@ -57,6 +57,10 @@ check_headers( - check_header('sys/queue.h', - when=non_msvc_compiler) - -+# sys/sysmacros.h may be necessary for major()/minor() macros -+check_header('sys/sysmacros.h', -+ when=non_msvc_compiler) -+ - check_headers( - 'sys/types.h', - 'netinet/in.h', -diff --git a/config/system-headers b/config/system-headers -index 60788e788..984e86933 100644 ---- a/config/system-headers -+++ b/config/system-headers -@@ -1055,6 +1055,7 @@ sys/statvfs.h - sys/syscall.h - sys/sysctl.h - sys/sysinfo.h -+sys/sysmacros.h - sys/sysmp.h - sys/syssgi.h - sys/system_properties.h -diff --git a/xpcom/io/nsLocalFileUnix.cpp b/xpcom/io/nsLocalFileUnix.cpp -index 6f13e2a7d..be7bf4de2 100644 ---- a/xpcom/io/nsLocalFileUnix.cpp -+++ b/xpcom/io/nsLocalFileUnix.cpp -@@ -30,6 +30,9 @@ - #define BLOCK_SIZE 1024 /* kernel block size */ - #endif - #endif -+#if defined(HAVE_SYS_SYSMACROS_H) -+#include -+#endif - - #include "xpcom-private.h" - #include "nsDirectoryServiceDefs.h" --- -2.11.0 - -- cgit v1.2.3-65-gdbad