summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2017-01-10 17:22:20 -0500
committerMike Gilbert <floppym@gentoo.org>2017-01-10 17:22:54 -0500
commitaf7ef4577540518eb2849449d38036c222e9bc2e (patch)
tree17d4ae73fc1654453dc69b4b417475a9a7911c5a /sys-apps/systemd/files/216-lz4-build.patch
parentsys-apps/systemd: depend on <gperf-3.1 for systemd-226 (diff)
downloadgentoo-af7ef4577540518eb2849449d38036c222e9bc2e.tar.gz
gentoo-af7ef4577540518eb2849449d38036c222e9bc2e.tar.bz2
gentoo-af7ef4577540518eb2849449d38036c222e9bc2e.zip
sys-apps/systemd: remove old
Package-Manager: Portage-2.3.3_p25, Repoman-2.3.1_p18
Diffstat (limited to 'sys-apps/systemd/files/216-lz4-build.patch')
-rw-r--r--sys-apps/systemd/files/216-lz4-build.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/sys-apps/systemd/files/216-lz4-build.patch b/sys-apps/systemd/files/216-lz4-build.patch
deleted file mode 100644
index 65fe45cb50f9..000000000000
--- a/sys-apps/systemd/files/216-lz4-build.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 10893a5cfa7d792ba171282c2ec46b85ed6aae0c
-Author: Gustavo Sverzut Barbieri <gustavo.barbieri@intel.com>
-Date: Thu Sep 25 18:08:02 2014 -0300
-
- journal: build fix when LZ4 is enabled but XZ is not
-
-diff --git a/src/journal/journal-file.h b/src/journal/journal-file.h
-index da2ef3b..6b4bf0d 100644
---- a/src/journal/journal-file.h
-+++ b/src/journal/journal-file.h
-@@ -78,7 +78,7 @@ typedef struct JournalFile {
-
- Hashmap *chain_cache;
-
--#ifdef HAVE_XZ
-+#if defined(HAVE_XZ) || defined(HAVE_LZ4)
- void *compress_buffer;
- size_t compress_buffer_size;
- #endif