blob: 0a99ad9727ad8c9c95df38afa0b6e18d48b21802 (
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
|
# glibc 2.28 readdir_r -> readdir hotfix (or, let's hope readdir is
# actually thread-safe internally)
source+=('hotspot-jdk8u181-b13-readdir_r.patch')
sha256sums+=('76b176e6ec65e90b1352cb42ebf6c47a11c9a632662c31ff413965d03e3a5d41')
eval "$(
declare -f prepare | \
sed '
/^}$/ i cd ${srcdir}/hotspot-${_repo_ver} && patch -Np1 < "${srcdir}/hotspot-jdk8u181-b13-readdir_r.patch"
'
)"
eval "$(
declare -f build | \
sed '
s/-Wno-error=deprecated-declarations/-Wno-error=deprecated-declarations -Wno-error=deprecated/
'
)"
# i486-specific
if [ "${CARCH}" = "i486" ]; then
_JARCH=i386
fi
|