diff options
author | Peter Levine <plevine457@gmail.com> | 2018-03-25 17:15:49 -0400 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-04-04 23:09:32 +0200 |
commit | 355d4ca8b41c04262f89c52cb3063a6697e930eb (patch) | |
tree | 247e6042193d3f0ef28219f27365f0b9f81db472 /games-engines/zoom | |
parent | app-accessibility/epos: Fix building with GCC-7 (diff) | |
download | gentoo-355d4ca8b41c04262f89c52cb3063a6697e930eb.tar.gz gentoo-355d4ca8b41c04262f89c52cb3063a6697e930eb.tar.bz2 gentoo-355d4ca8b41c04262f89c52cb3063a6697e930eb.zip |
games-engines/zoom: Fix building with GCC-7
Bug: https://bugs.gentoo.org/617808
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Closes: https://bugs.gentoo.org/617808
Closes: https://github.com/gentoo/gentoo/pull/7617
Closes: https://github.com/gentoo/gentoo/pull/7617
Diffstat (limited to 'games-engines/zoom')
-rw-r--r-- | games-engines/zoom/files/zoom-1.1.5-gcc7.patch | 53 | ||||
-rw-r--r-- | games-engines/zoom/zoom-1.1.5-r1.ebuild | 4 |
2 files changed, 56 insertions, 1 deletions
diff --git a/games-engines/zoom/files/zoom-1.1.5-gcc7.patch b/games-engines/zoom/files/zoom-1.1.5-gcc7.patch new file mode 100644 index 000000000000..6f50d3f43624 --- /dev/null +++ b/games-engines/zoom/files/zoom-1.1.5-gcc7.patch @@ -0,0 +1,53 @@ +Bug: https://bugs.gentoo.org/617808 +Upstream commit: https://github.com/Logicalshift/zoom/commit/6b0ad57dd2c125c9126e9b7913560ad25709a36f + +From 6b0ad57dd2c125c9126e9b7913560ad25709a36f Mon Sep 17 00:00:00 2001 +From: Andrew Hunter <andrew@logicalshift.co.uk> +Date: Sat, 3 Mar 2012 16:31:35 +0000 +Subject: [PATCH] Inline functions need to be marked as static in order to + compile with LLVM + +--- + src/interp.c | 4 ++-- + src/tokenise.c | 6 +++--- + 2 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/src/interp.c b/src/interp.c +index a5fa8fe..3d446fa 100644 +--- a/src/interp.c ++++ b/src/interp.c +@@ -232,7 +232,7 @@ ZFrame* call_routine(ZDWord* pc, ZStack* stack, ZDWord start) + return newframe; + } + +-inline void store(ZStack* stack, int var, ZWord value) ++static inline void store(ZStack* stack, int var, ZWord value) + { + #ifdef DEBUG + printf_debug("Storing %i in Variable #%x\n", value, var); +@@ -253,7 +253,7 @@ inline void store(ZStack* stack, int var, ZWord value) + } + } + +-inline void store_nopush(ZStack* stack, int var, ZWord value) ++static inline void store_nopush(ZStack* stack, int var, ZWord value) + { + #ifdef DEBUG + printf_debug("Storing %i in Variable #%x\n", value, var); +diff --git a/src/tokenise.c b/src/tokenise.c +index 5925169..fb442d0 100644 +--- a/src/tokenise.c ++++ b/src/tokenise.c +@@ -154,9 +154,9 @@ ZDictionary* dictionary_cache(const ZUWord dict_pos) + + int cache = 1; + +-inline ZUWord lookup_word(unsigned int* word, +- int wordlen, +- ZUWord dct) ++static inline ZUWord lookup_word(unsigned int* word, ++ int wordlen, ++ ZUWord dct) + { + ZByte packed[12]; + int zscii_len; diff --git a/games-engines/zoom/zoom-1.1.5-r1.ebuild b/games-engines/zoom/zoom-1.1.5-r1.ebuild index 20d982f0281d..1f5085ae61da 100644 --- a/games-engines/zoom/zoom-1.1.5-r1.ebuild +++ b/games-engines/zoom/zoom-1.1.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -22,6 +22,8 @@ DEPEND="${RDEPEND} dev-lang/perl x11-proto/xextproto" +PATCHES=( "${FILESDIR}"/${P}-gcc7.patch ) + src_install() { default dodoc -r manual/* |