blob: 3f6a4f9c0b729e4506b86512b0798fdb7a22181c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# add -latomic where needed
# e.g.TARGET_LINK_LIBRARIES(mariabackup sql crc atomic)
source+=('mariadb-10.1.32-atomic.patch')
sha256sums+=('194e43ca5468d4f4634f45eed6aaf08865c2d351fcc500696d4dc578fe94902e')
eval "$(
declare -f prepare | \
sed '
/patch -Np1.*openssl-1-1-0.patch/ a \ patch -Np1 -i "${srcdir}/mariadb-10.1.32-atomic.patch"
'
)"
# 486-specific
if [ "${CARCH}" = "i486" ]; then
# no java
eval "$(
declare -f build | \
sed '
s/cmake /cmake -DCONNECT_WITH_JDBC=0 /
'
)"
fi
|