diff options
author | 2017-12-24 15:31:32 +0100 | |
---|---|---|
committer | 2017-12-27 13:56:04 +0200 | |
commit | 36450a88d1529f5ee657e7dc328c9a98a7367706 (patch) | |
tree | 58a2885efc1a605cb9d2dcb188d87a8037d1c7f8 /sci-misc/boinc/boinc-7.8.4.ebuild | |
parent | sci-misc/boinc: Clean up old ebuilds (diff) | |
download | gentoo-36450a88d1529f5ee657e7dc328c9a98a7367706.tar.gz gentoo-36450a88d1529f5ee657e7dc328c9a98a7367706.tar.bz2 gentoo-36450a88d1529f5ee657e7dc328c9a98a7367706.zip |
sci-misc/boinc: Remove xlocale.h usage, fixes bug 639108
>=sys-libs/glibc-2.26 dropped xlocale.h support.
From https://sourceware.org/glibc/wiki/Release/2.26#Removal_of_.27xlocale.h.27
> The nonstandard header xlocale.h has been removed in this release. It was
> never intended to be included directly by programs other than glibc itself,
> and it was a strict subset of the standard header locale.h.
This commit removes the inclusion of xlocale.h, and substitutes it with
locale.h where necessary.
Tested-by: Sven Eden <yamakuzure@gmx.net>
Bug: https://bugs.gentoo.org/639108
Closes: https://bugs.gentoo.org/639108
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'sci-misc/boinc/boinc-7.8.4.ebuild')
-rw-r--r-- | sci-misc/boinc/boinc-7.8.4.ebuild | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sci-misc/boinc/boinc-7.8.4.ebuild b/sci-misc/boinc/boinc-7.8.4.ebuild index b4628e19804..3c1024ee2da 100644 --- a/sci-misc/boinc/boinc-7.8.4.ebuild +++ b/sci-misc/boinc/boinc-7.8.4.ebuild @@ -55,6 +55,8 @@ DEPEND="${RDEPEND} PATCHES=( # >=x11-libs/wxGTK-3.0.2.0-r3 has webview removed, bug 587462 "${FILESDIR}"/fix_webview.patch + # xlocale.h was removed in modern glibc, bug 639108 + "${FILESDIR}"/fix_xlocale.patch ) S="${WORKDIR}/${PN}-client_release-${MY_PV}-${PV}" |