Bimlik1
Bimlik1

Reputation: 23

Why does mariaDB wrongfully ask for missing component

I'm trying to build from source MariaDB on CentOS 7. I have only done the following commands before I get the error shown in this image:

$ cd /usr/local/src
$ wget https://downloads.mariadb.org/interstitial/mariadb-5.5.40/source/mariadb-5.5.40.tar.gz/from/http%3A//ftp.ddg.lth.se/mariadb
$ tar xzvf mariadb
$ cd mariadb-5.5.40/
$ chown -R root.root .
$ cmake . -DCMAKE_INSTALL_PREFIX:PATH=/usr/local/mariadb

proof that libaio-devel is installed

Upvotes: 0

Views: 122

Answers (1)

localhost
localhost

Reputation: 367

For anyone that is in a similar situation, cmake apparently does a pretty bad job of re-checking dependencies, even removing the cache file doesn't work very well.

Just delete and re-extract from the .tar.gz and then cmake again, if you actually have the dependencies then they will be found.

Upvotes: 2

Related Questions