diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-03-08 20:56:26 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-03-08 20:56:26 +0200 |
commit | f3775d33c63280a5cd4c566d46c6fbf08df1756f (patch) | |
tree | 9fb3f6313bc96c8aeb557ba5a3da24ee6eb3da62 /main/musl | |
parent | e831ada5136c933b9d89ae6b828c468ba2c8a225 (diff) | |
download | aports-f3775d33c63280a5cd4c566d46c6fbf08df1756f.tar.bz2 aports-f3775d33c63280a5cd4c566d46c6fbf08df1756f.tar.xz |
main/musl: revert ucontext.h removal
it causes more problems than solves. the applications checking
only for that header need to be fixed to check also that makecontext
exists during linking.
Diffstat (limited to 'main/musl')
-rw-r--r-- | main/musl/APKBUILD | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD index a1dd62b719..947e3023a0 100644 --- a/main/musl/APKBUILD +++ b/main/musl/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=musl pkgver=1.1.14 -pkgrel=3 +pkgrel=4 pkgdesc="the musl c library (libc) implementation" url="http://www.musl-libc.org/" arch="all" @@ -86,11 +86,6 @@ package() { # and use GNU gettext where needed. the plan is to migrate to # musl gettext() later on as fully as possible. rm "$pkgdir"/usr/include/libintl.h || return 1 - - # remote ucontext.h since musl does not implement any of the functions - # defined there. this can and does confuse applications to think - # makecontext() is usable while it's not. one notable example is mariadb. - rm "$pkgdir"/usr/include/ucontext.h || return 1 } utils() { |