PureFTPd Install - Error?
When I try to run:./configure --with-mysql --with-everything
for pureftpd 1.0.17a, I get the following error:
checking whether mysql clients can run... no
configure: error: Your MySQL client libraries aren't properly installed
It also happens when I run ./configure --with-mysql=/usr/local/mysql --with-everything
If your MySQL libraries are installed in a special path, you can specify it
like this:
./configure --with-mysql=/opt/mysql
In this example, headers (like mysql.h) will be searched in
/opt/mysql/include and /opt/mysql/include/mysql, while related libraries
will be searched in /opt/mysql/lib and /opt/mysql/lib/mysql .
like this:
./configure --with-mysql=/opt/mysql
In this example, headers (like mysql.h) will be searched in
/opt/mysql/include and /opt/mysql/include/mysql, while related libraries
will be searched in /opt/mysql/lib and /opt/mysql/lib/mysql .
[root@testing mysql]# ls
libdbug.a libmerge.a libmyisammrg.a libmysqlclient.la libmysqlclient.so.12 libmystrings.a libnisam.a
libheap.a libmyisam.a libmysqlclient.a libmysqlclient.so libmysqlclient.so.12.0.0 libmysys.a libvio.a
libdbug.a libmerge.a libmyisammrg.a libmysqlclient.la libmysqlclient.so.12 libmystrings.a libnisam.a
libheap.a libmyisam.a libmysqlclient.a libmysqlclient.so libmysqlclient.so.12.0.0 libmysys.a libvio.a
Thanks - Matt