Сравнение apr-1.7.3 с apr-1.7.4
/usr/portage/dev-libs/apr/apr-1.7.4.ebuild 2023-10-09 14:52:29.488368350 +0300 | ||
---|---|---|
11 | 11 | |
12 | 12 |
LICENSE="Apache-2.0" |
13 | 13 |
SLOT="1/${PV%.*}" |
14 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
15 |
IUSE="doc old-kernel selinux static-libs +urandom" |
|
14 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
15 |
IUSE="doc old-kernel selinux static-libs +urandom valgrind" |
|
16 | 16 | |
17 | 17 |
# See bug #815265 for libcrypt dependency |
18 | 18 |
DEPEND=" |
... | ... | |
23 | 23 |
${DEPEND} |
24 | 24 |
selinux? ( sec-policy/selinux-base-policy ) |
25 | 25 |
" |
26 |
DEPEND+=" valgrind? ( dev-util/valgrind )" |
|
26 | 27 |
BDEPEND=" |
27 | 28 |
>=sys-devel/libtool-2.4.2 |
28 | 29 |
doc? ( app-doc/doxygen ) |
... | ... | |
56 | 57 |
--enable-posix-shm |
57 | 58 |
--enable-threads |
58 | 59 |
$(use_enable static-libs static) |
60 |
$(use_with valgrind) |
|
59 | 61 |
--with-installbuilddir="${EPREFIX}"/usr/share/${PN}/build |
60 | 62 |
) |
61 | 63 | |
... | ... | |
95 | 97 | |
96 | 98 |
if use urandom; then |
97 | 99 |
myconf+=( --with-devrandom=/dev/urandom ) |
100 |
else |
|
98 | 101 |
myconf+=( --with-devrandom=/dev/random ) |
99 | 102 |
fi |
100 | 103 |