diff options
author | David Seifert <soap@gentoo.org> | 2020-10-29 23:09:10 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-10-29 23:09:10 +0100 |
commit | 0f8c69f49c680f95fec772042e668c4d0a127028 (patch) | |
tree | 994b02881a92073f0f061397ad8f29262917a652 /sys-apps/isapnptools | |
parent | games-board/gnushogi: Fix -fno-common (diff) | |
download | gentoo-0f8c69f49c680f95fec772042e668c4d0a127028.tar.gz gentoo-0f8c69f49c680f95fec772042e668c4d0a127028.tar.bz2 gentoo-0f8c69f49c680f95fec772042e668c4d0a127028.zip |
sys-apps/isapnptools: Fix -fno-common
Closes: https://bugs.gentoo.org/706998
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-apps/isapnptools')
-rw-r--r-- | sys-apps/isapnptools/files/isapnptools-1.27-fno-common.patch | 22 | ||||
-rw-r--r-- | sys-apps/isapnptools/isapnptools-1.27.ebuild | 10 |
2 files changed, 28 insertions, 4 deletions
diff --git a/sys-apps/isapnptools/files/isapnptools-1.27-fno-common.patch b/sys-apps/isapnptools/files/isapnptools-1.27-fno-common.patch new file mode 100644 index 000000000000..54da41cdd602 --- /dev/null +++ b/sys-apps/isapnptools/files/isapnptools-1.27-fno-common.patch @@ -0,0 +1,22 @@ +--- a/src/isapnp_main.c ++++ b/src/isapnp_main.c +@@ -1153,7 +1153,7 @@ + return 0; + } + +-unsigned char serial_identifier[NUM_CARDS+1][IDENT_LEN]; ++extern unsigned char serial_identifier[NUM_CARDS+1][IDENT_LEN]; + static char *boardid[NUM_CARDS+1]; + static unsigned long serno[NUM_CARDS+1]; + +--- a/src/isapnp_main.l ++++ b/src/isapnp_main.l +@@ -363,7 +363,7 @@ + return 0; + } + +-unsigned char serial_identifier[NUM_CARDS+1][IDENT_LEN]; ++extern unsigned char serial_identifier[NUM_CARDS+1][IDENT_LEN]; + static char *boardid[NUM_CARDS+1]; + static unsigned long serno[NUM_CARDS+1]; + diff --git a/sys-apps/isapnptools/isapnptools-1.27.ebuild b/sys-apps/isapnptools/isapnptools-1.27.ebuild index c95092405332..294f895aff77 100644 --- a/sys-apps/isapnptools/isapnptools-1.27.ebuild +++ b/sys-apps/isapnptools/isapnptools-1.27.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="Tools for configuring ISA PnP devices" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" @@ -10,9 +10,11 @@ SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="-* amd64 x86" -IUSE="" -PATCHES=( "${FILESDIR}"/${P}-include.patch ) +PATCHES=( + "${FILESDIR}"/${P}-include.patch + "${FILESDIR}"/${P}-fno-common.patch +) src_install() { default |