blob: ca792276e3945b24c7829cce1b03d1ada2dc1eca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
PORTAGE_LIBC="musl"
ELIBC="musl"
FEATURES="sandbox sfperms strict"
USE="pic unicode -berkdb -gdbm"
BOOTSTRAP_USE="${BOOTSTRAP_USE} -berkdb -gdbm"
# All libraries are in /lib or /usr/lib
SYMLINK_LIB="no"
FEATURES="-multilib-strict"
# TODO: fix so musl doesn't generate this for all packages
# that use a charset, it causes package collisons.
# Note: we use a full path for locale.alias for bug #799437
INSTALL_MASK="charset.alias /usr/share/locale/locale.alias"
# Sam James <sam@gentoo.org> (2024-01-22)
# Workaround for sandbox bug which causes this gnulib configure test to take
# many real hours on slower machines, and certainly a huge amount of CPU hours
# on others. Spoof the same result as configure gets on a modern musl system
# for now. See bug #447970 and bug #922652.
gl_cv_func_getcwd_path_max="no, but it is partly working"
|