diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-05-06 01:16:41 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-06 07:05:25 +0100 |
commit | f02e8249af6d00a65f810f776ccc1ac0012f33ef (patch) | |
tree | c099848ee34be3ee4cacfc58d339d908c094c766 /dev-games | |
parent | app-editors/wxhexeditor: fix EmptyGlobalAssignment (diff) | |
download | gentoo-f02e8249af6d00a65f810f776ccc1ac0012f33ef.tar.gz gentoo-f02e8249af6d00a65f810f776ccc1ac0012f33ef.tar.bz2 gentoo-f02e8249af6d00a65f810f776ccc1ac0012f33ef.zip |
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 <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/libnw/libnw-1.30.02.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
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 |