blob: 3d843259d5258d9d08cc463e2c1e3f3784fbbc52 (
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
|
# 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
# temporary checksum workaround
sha256sums[0]='40ab19aeb8de141fdc188cf2251213c9e7351bee4d0cd29db704fae68d1068cf'
|