aboutsummaryrefslogtreecommitdiffstats
path: root/tools/e2fsprogs/patches/010-old-libmagic.patch
diff options
context:
space:
mode:
authorDaniel Engberg <daniel.engberg.lists@pyret.net>2017-09-08 09:42:23 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2017-09-16 22:22:44 +0200
commited617fd8f2f39e18ad435883db5b4100e6f7f977 (patch)
tree5c06043aa72913130d0faff345bb755737fb7c7a /tools/e2fsprogs/patches/010-old-libmagic.patch
parentb0f26243feea1b6f4341d7a2e08e9650089ed674 (diff)
downloadupstream-ed617fd8f2f39e18ad435883db5b4100e6f7f977.tar.gz
upstream-ed617fd8f2f39e18ad435883db5b4100e6f7f977.tar.bz2
upstream-ed617fd8f2f39e18ad435883db5b4100e6f7f977.zip
tools/e2fsprogs: Update to 1.43.6
Update e2fsprogs to 1.43.6 * Remove FreeBSD patch as it's not needed, FreeBSD 9.1 is EoL and this is compiling on FreeBSD 11.1. * Remove libmagic patch, RHEL 5 is EoL (End of Production Phase) since March 31, 2017. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'tools/e2fsprogs/patches/010-old-libmagic.patch')
-rw-r--r--tools/e2fsprogs/patches/010-old-libmagic.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/e2fsprogs/patches/010-old-libmagic.patch b/tools/e2fsprogs/patches/010-old-libmagic.patch
deleted file mode 100644
index 11a7e180be..0000000000
--- a/tools/e2fsprogs/patches/010-old-libmagic.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b482eb7af94885b6bbad9329e40702c958d5b448 Mon Sep 17 00:00:00 2001
-From: Hauke Mehrtens <hauke@hauke-m.de>
-Date: Thu, 30 Jun 2016 19:53:03 +0200
-Subject: [PATCH] fix build problem with very old libmagic
-
-The libmagic shipped with RedHat 5 does not define
-MAGIC_NO_CHECK_ELF and MAGIC_NO_CHECK_COMPRESS. e2fsprogs should
-check for that otherwise the build will fail.
-
-Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
----
- lib/support/plausible.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/lib/support/plausible.c
-+++ b/lib/support/plausible.c
-@@ -258,7 +258,7 @@ int check_plausibility(const char *devic
- return 0;
- }
-
--#ifdef HAVE_MAGIC_H
-+#if defined(HAVE_MAGIC_H) && defined(MAGIC_NO_CHECK_ELF) && defined(MAGIC_NO_CHECK_COMPRESS)
- if ((flags & CHECK_FS_EXIST) &&
- !getenv("E2FSPROGS_LIBMAGIC_SUPPRESS") &&
- magic_library_available()) {