blob: a6e73395558c3acf3be3db3b5de1817ff9279aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# do not make postfix depend on a micro-optimized Mysql (for i486)
if [ "${CARCH}" = "i486" ]; then
depends=(${depends[@]//mariadb-libs/})
eval "$(
declare -f build | \
sed '
s|-DHAS_MYSQL -I/usr/include/mysql||g
s|-lmysqlclient||g
'
)"
fi
|