Good start on getting a .a file there.
From http://hasky.askmonty.org/archive/10.2/build-11869/kvm-deb-xenial-amd64/debs/binary/
$ dpkg-deb -c libmariadbd-dev_10.2.3+maria~xenial_amd64.deb
|
drwxr-xr-x root/root 0 2016-11-04 05:20 ./
|
drwxr-xr-x root/root 0 2016-11-04 05:19 ./usr/
|
drwxr-xr-x root/root 0 2016-11-04 05:19 ./usr/lib/
|
drwxr-xr-x root/root 0 2016-11-04 05:20 ./usr/lib/x86_64-linux-gnu/
|
-rw-r--r-- root/root 35674278 2016-11-04 05:20 ./usr/lib/x86_64-linux-gnu/libmysqld.a
|
drwxr-xr-x root/root 0 2016-11-04 05:19 ./usr/share/
|
drwxr-xr-x root/root 0 2016-11-04 05:19 ./usr/share/doc/
|
drwxr-xr-x root/root 0 2016-11-04 05:20 ./usr/share/doc/libmariadbd-dev/
|
-rw-r--r-- root/root 466 2016-11-04 04:38 ./usr/share/doc/libmariadbd-dev/changelog.gz
|
-rw-r--r-- root/root 2501 2016-11-04 03:49 ./usr/share/doc/libmariadbd-dev/copyright
|
lrwxrwxrwx root/root 0 2016-11-04 05:20 ./usr/lib/x86_64-linux-gnu/libmysqld.so -> libmysqld.so.19
|
So the .so is a symlink to a libmysqld.so.19 which isn't in this package? Wrong. The libmysqld.so.19 needs to be in the package too. shared library appeared to be for libmariadbd18 however this package wasn't created.
Like otto and I have said, all we also need the header include files. They are in the libmariadbclient-dev pkg which is a dependency
Added mariadb_config to dev package. Check that mariadb_config output the right library name - I suspect -lmariadb will be used despite mysqld being installed.
Unfixed: /usr/bin/mysql_config --port is 0 (this is client side config). Couldn't work out why.
Fixes in:
https://github.com/MariaDB/server/pull/254
As part of the fixes in
MDEV-6284there is a package called libmysqld-dev that contains the files libmysqld.so and libmysql.a.In a comment to
MDEV-6284tturenko commented that he thinks that the libmysqld.so file should not be inside a -dev package. In comparison to RPM packages the libmysqld.so file is inside the mariadb-server package. Debian might require that shared libs are in separate packages, but then again it does depend on the mariadb-server package to function (because it needs errmsg.sys files, reads my.cnf, and can use all the server tools, like myisamchk). I'll look into this.I cannot copy a solution from the MySQL packaging side, as to my knowledge MySQL in Debian does not have any libmysqld.so (https://packages.debian.org/search?searchon=contents&keywords=libmysqld.so&mode=filename&suite=unstable&arch=any) though the embedded lib is described in the MySQL.com docs (https://dev.mysql.com/doc/refman/5.5/en/libmysqld.html).