Re: [Doxygen-develop] trying to get involve
Brought to you by:
dimitri
From: Dimitri v. H. <di...@st...> - 2003-10-28 20:34:36
|
On Sun, Oct 26, 2003 at 07:44:54PM +0100, as...@cl... wrote: > As i tried to compile windows doxygen. I downloaded the source from cvs opened the file doxygen\wintools\Doxygen.dsw, but it gave me some error message about doxysearch not been available . so i fixed this first problem in removing the project from the workspace. and created the patch file that i attached here. the solution still does not compile so i attached here the error messages. but before i try to fix these issues and create a patch . I wanted to check with everyone if this was the right way of > trying to help, and maybe what i am trying to do has already been fixed. > please keep me posted in there is anything i should/could be doing? Sending patches is good, but for windows it is good to use "diff -bu", where the "b" option makes sure blanks are ignored (otherwise the whole file is different only due to missing ^M's). The errors you have are due to the files that are generated by flex and yacc (from .l and .y files), which are in the source distribution but not in CVS (they are generated after all). To fix this in a nice way the project should add custom build rules for the flex and yacc files. If you assume flex and yacc are in the path this could even be done in a portable way. You could look at src/libdoxygen.t for info how to call flex and yacc in order to generate the missing files. Regards, Dimitri |