cannot compile MySQL - plugin
Brought to you by:
fbilhaut
The compiler can't find mysql.h (included in MySql++.h) durring compiling MySql++.cpp (plugins/mysql).
I solved this problem as follows.
1.) I replaced the #include <mysql/mysql.h> in MySQL++.h
with #include <mysql>
2.) I make a CPPFLAGS=-I[path of mysql-includes] ./configure etc.
With these changes I was able to compile ksql successfully.
(this error is in KSsql 2.0 pre)