From f02e8249af6d00a65f810f776ccc1ac0012f33ef Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Mon, 6 May 2024 01:16:41 -0400 Subject: dev-games/libnw: fix Modern C porting error in vintage configure script This is an especially vintage configure script. It was generated by autoconf 2.13, and the tarball is dated 2003. It failed pretty early on: configure: error: installation or configuration problem: C compiler cannot create executables. (There are still other modern C porting errors.) Closes: https://bugs.gentoo.org/875065 Closes: https://bugs.gentoo.org/909546 Signed-off-by: Eli Schwartz Signed-off-by: Sam James --- dev-games/libnw/libnw-1.30.02.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-games/libnw/libnw-1.30.02.ebuild b/dev-games/libnw/libnw-1.30.02.ebuild index b64675c3fd0e..f040c741f587 100644 --- a/dev-games/libnw/libnw-1.30.02.ebuild +++ b/dev-games/libnw/libnw-1.30.02.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit toolchain-funcs +inherit autotools toolchain-funcs DESCRIPTION="Tools and libraries for NWN file manipulation" HOMEPAGE="https://sourceforge.net/projects/openknights" @@ -22,6 +22,7 @@ DOCS=( AUTHORS ChangeLog NEWS README README.tech TODO ) src_prepare() { default + eautoreconf local f while IFS="" read -d $'\0' -r f; do -- cgit v1.2.3-65-gdbad