Webboard: install error when compile with MySQL on centos 5 x86_64
| Newsgroups | gmane.comp.web.mnogosearch.general |
|---|---|
| Message-ID | <[email protected]> |
Author: Alexander Barkov Email: [email protected] Message: > when trying to install mnogosearch 3.3.9, gives an error when run make command, > > skipping incompatible /usr/lib/mysql/libmysqlclient.so when searching for -lmysqlclient > > my mysql version is mysql-5.0.45-7.el5 It seems configure tries to use the 32-bit version of the libary. I guess the 64-bit version of libmysqlclient.so is installed in /usr/lib64/mysql. You need to specify correct library search path. Try this: LDFLAGS=-L/usr/lib64/mysql ./configure --with-mysql <other-arguments> make make install Reply: <http://www.mnogosearch.org/board/message.php?id=21076>