I am installing mod_auth_mysql which is a http-Basic Authentication Module. It allows to maintain your user comfortable in a MySQL-Database.
I've downloaded the source from ftp://ftp.kciLink.com/pub/mod_auth_mysql.c.gz
I've tried to follow the steps detailed by:
section: 3.7.3. Building and installing. These are the actual steps:
gunzip mod_auth_mysql.c.gz
/usr/local/apache/bin/apxs -c -I/usr/local/mysql/include -L/usr/local/mysql/lib/mysql -lmysqlclient -lm mod_auth_mysql.c
cp mod_auth_mysql.so /usr/local/apache/libexec
And these are the errors I got:
cannot find -lmysqlclient
ld returned 1 exit status
command faild with rc=1
when I execute this command:
/usr/local/apache/bin/apxs -c -I/usr/local/mysql/include -L/usr/local/mysql/lib/mysql -lmysqlclient -lm mod_auth_mysql.c
I'm stuck and is there a solution to this?
I've downloaded the source from ftp://ftp.kciLink.com/pub/mod_auth_mysql.c.gz
I've tried to follow the steps detailed by:
section: 3.7.3. Building and installing. These are the actual steps:
gunzip mod_auth_mysql.c.gz
/usr/local/apache/bin/apxs -c -I/usr/local/mysql/include -L/usr/local/mysql/lib/mysql -lmysqlclient -lm mod_auth_mysql.c
cp mod_auth_mysql.so /usr/local/apache/libexec
And these are the errors I got:
cannot find -lmysqlclient
ld returned 1 exit status
command faild with rc=1
when I execute this command:
/usr/local/apache/bin/apxs -c -I/usr/local/mysql/include -L/usr/local/mysql/lib/mysql -lmysqlclient -lm mod_auth_mysql.c
I'm stuck and is there a solution to this?