Details
-
Type:
Bug
-
Status: Open (View Workflow)
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 10.2.29, 10.3.20, 10.4.10
-
Component/s: libmariadb
-
Labels:None
-
Environment:Linux
Description
All versions are affected I found this that solves the issue, but maybe we should fix it in the software.
"I think this is a bug in that custom mariadb repo. Their packag MariaDB-devel-10.2.6-1.fc25.x86_64 only contains a library named:
/usr/lib64/libmariadbclient.a
However their pkg-config yiels another name:
> pkg-config --libs mariadb
-lmariadb
You best raise this at the maintainers of that repo. A workaround is to symlink libmariadbclient.a to libmariadb.a:
sudo ln -s /usr/lib64/libmariadbclient.a /usr/lib64/libmariadb.a
That fixes the installation."