From: Martin Z. <co...@mz...> - 2010-01-19 12:47:37
|
Hi Mattia, thanks! You're right, "lcd4linux" compiles as a charm after making the change, and I have already committed this to SVN. Moreover, I have looked through the other plugins to made sure that all of them include "config.h". (They do. <g>) Do you think it would make sense to change "plugin_sample.c" from /* define the include files you need */ #include "config.h" #include <stdlib.h> #include <string.h> #include <ctype.h> /* these should always be included */ (...) to /* this file should always be included */ #include "config.h" /* define the include files you need */ #include <stdlib.h> #include <string.h> #include <ctype.h> /* these should always be included */ (...) In this way, everybody would see that "config.h" shouldn't be removed. Martin -- www.mzuther.de www.radix-musik.de |