#include lines are a bit messed up
Brought to you by:
t1mpy
Your headers reference each other with the construct
#include "id3/otherheader.h"
which certainly should not work, since they are all in
the same directory.
You should probably change it to #include
"otherheader.h", #include <id3/otherheader.h> will also
work, but will be less efficient for the preprocessor.
HTH,
Phil
PS this showed up when I was trying to compile xtunes....
Logged In: YES
user_id=564388
I know, they used to be messed up, and they still are a bit.
Previous maintainers have 'fixed' it by adding extra include
dirs. I'll sure have a try and sorting them out before final.