blob: 7b6bfed7f0acf04ba1a88440c0635f84b7ad1ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## Pure-FTPd to run with MariaDB 10.3 on Debian Wheezy
Rebuild Pure-FTPd due to following error message after using MariaDB 10.3 (should happen also with 10.2)
```
symbol my_make_scrambled_password, version libmysqlclient_18 not defined in file libmysqlclient.so.18 with link time reference
```
Implementation of make_scrambled_password is taken from MariaDB connectors.
### Build and get installation files
Build is done inside Debian Wheezy docker with
```
DOCKER_BUILDKIT=1 docker build --output out .
```
After this command the .deb-files are located in out folder.
|