Nerdier

Adjective: Comparative form of nerdy: more nerdy.

MySQL error “configure: error: Cannot find libmysqlclient_r under /usr. Note that the MySQL client library is not bundled anymore!”

If you get the above error when compiling PHP you need to do the below;

Add the following to your ./configure string

--with-libdir=lib64

by default it looks in /usr/lib, but not /usr/lib64. The above fixes this issue!

You also need to install mysql-devel if you don’t have it.

Leave a Reply

Your email address will not be published. Required fields are marked *