Hi,
I want to include "mysql.h" in /neard-explorenfc-0.8/examples.basic.c"
I downloaded like:
$ sudo apt-get install libmysqlclient-dev
"mysql.h" is in "/usr/include/mysql/"
So, when I used "mysql.h" file and compile is like this:
$ gcc sql.c -I /usr/include/mysql -lmysqlclient
when I include the mysql.h file in basic.c just like #include <mysql/mysql.h>
and '$ make' at the "/neard-explorenfc-0.8/" that is occured the error
how to include the "mysql.h" in "usr/include/mysql" when I "$ make" the "/neard-explorenfc-0.8/Makefile" ???
should I fix the /neard-explorenfc-0.8/Makefile?