2.0.1. While compiling the compiler complains

[<<<] [>>>]

mysqlinterf.c:10: mysql.h: No such file or directory

Be sure that you have a MySQL client installed on your UNIX. Check that the file `mysql.h' is in the directory `/usr/include' or in a directory that is specified using the –I option of the compiler. A sample `install.sh' file is the following:

cc -c -I/usr/include/mysql -o mysqlinterf.o mysqlinterf.c
ld -shared -o mysql.so mysqlinterf.o -lc -lmysqlclient
mv *.so /etc/scriba/modules

[<<<] [>>>]