diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-03-03 01:26:56 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-03-03 01:27:20 +0100 |
commit | 6641ea68521cc81c1222137c736d6947722ba94d (patch) | |
tree | 6299979b341ccbc9b26b862062a42b5f330679d9 /sys-devel | |
parent | dev-python/sqlalchemy: Stabilize 2.0.27 ppc, #926010 (diff) | |
download | gentoo-6641ea68521cc81c1222137c736d6947722ba94d.tar.gz gentoo-6641ea68521cc81c1222137c736d6947722ba94d.tar.bz2 gentoo-6641ea68521cc81c1222137c736d6947722ba94d.zip |
sys-devel/autogen: Apply musl-1.2.4 largefile workaround
Bug: https://bugs.gentoo.org/920174
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/autogen/autogen-5.18.16-r3.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys-devel/autogen/autogen-5.18.16-r3.ebuild b/sys-devel/autogen/autogen-5.18.16-r3.ebuild index e9f534f54787..e908a1837ef5 100644 --- a/sys-devel/autogen/autogen-5.18.16-r3.ebuild +++ b/sys-devel/autogen/autogen-5.18.16-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools toolchain-funcs +inherit flag-o-matic autotools toolchain-funcs DESCRIPTION="Program and text file generation" HOMEPAGE="https://www.gnu.org/software/autogen/" @@ -60,6 +60,9 @@ src_configure() { export libopts_cv_with_libregex=yes fi + # bug 920174 + use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE + econf $(use_enable static-libs static) } |