mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
lifelines: fix build on musl
This commit is contained in:
parent
de4d445836
commit
5529420ae2
2 changed files with 16 additions and 1 deletions
15
srcpkgs/lifelines/patches/fix-musl.patch
Normal file
15
srcpkgs/lifelines/patches/fix-musl.patch
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
diff --git a/src/gedlib/locales.c b/src/gedlib/locales.c
|
||||||
|
index fb3badca27..c6a73b3fc7 100644
|
||||||
|
--- a/src/gedlib/locales.c
|
||||||
|
+++ b/src/gedlib/locales.c
|
||||||
|
@@ -414,8 +414,10 @@ notify_gettext_language_changed (void)
|
||||||
|
#if WIN32_INTL_SHIM
|
||||||
|
gt_notify_language_change();
|
||||||
|
#else
|
||||||
|
+#ifdef __GLIBC__
|
||||||
|
extern int _nl_msg_cat_cntr;
|
||||||
|
++_nl_msg_cat_cntr;
|
||||||
|
+#endif
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
}
|
|
@ -5,13 +5,13 @@ revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="bison"
|
hostmakedepends="bison"
|
||||||
makedepends="ncurses-devel"
|
makedepends="ncurses-devel"
|
||||||
archs="~*-musl" # For no reason except it keeps failing
|
|
||||||
short_desc="Genealogy Software System"
|
short_desc="Genealogy Software System"
|
||||||
maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
|
maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
homepage="https://github.com/lifelines/lifelines"
|
homepage="https://github.com/lifelines/lifelines"
|
||||||
distfiles="https://github.com/lifelines/lifelines/releases/download/${version}/lifelines-${version}.tar.gz"
|
distfiles="https://github.com/lifelines/lifelines/releases/download/${version}/lifelines-${version}.tar.gz"
|
||||||
checksum=083007f81e406fce15931e5a29a7ba0380ef0b3b9c61d5eb5228ad378c7f332d
|
checksum=083007f81e406fce15931e5a29a7ba0380ef0b3b9c61d5eb5228ad378c7f332d
|
||||||
|
make_check=no # times out
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
|
Loading…
Add table
Reference in a new issue