Did a rebase to your master, then needed some fixes to compile in WIN32... they are here...
Need to remember a source file name change must also be reflected in CMakeLists.txt...
Only added startwindow.c since it was not yet generated by CMakeLists.txt. That feature has now been add to cmake, and added a .gitignore to ignore this generated source...
Since it runs the perl in the root folder, adjusted the buildstartwindow.pl to the correct relative directories...
Need to add TIDY_CALL type to the filter callback to compile html-tidy.c in WIN32. All the rest was experimentation which I meant to remove... sorry...
There are still some warnings issued during the WIN32 compile, but will deal with these separately...
One is very interesting, namely the gettimeofday() function not declared. This function does not exist in Windows, but one of the 3rdParty libraries linked to must include a WIN32 port of this function, probably cURL, but need to check this...
The new win32 folder contains WIN32 ports of opendir and asprintf... and could include gettimeofday() if it was ever needed...
Did a rebase to your master, then needed some fixes to compile in WIN32... they are here...
Need to remember a source file name change must also be reflected in CMakeLists.txt...
Only added startwindow.c since it was not yet generated by CMakeLists.txt. That feature has now been add to cmake, and added a .gitignore to ignore this generated source...
Since it runs the perl in the root folder, adjusted the buildstartwindow.pl to the correct relative directories...
Need to add
TIDY_CALL
type to the filter callback to compile html-tidy.c in WIN32. All the rest was experimentation which I meant to remove... sorry...There are still some warnings issued during the WIN32 compile, but will deal with these separately...
One is very interesting, namely the
gettimeofday()
function not declared. This function does not exist in Windows, but one of the 3rdParty libraries linked to must include a WIN32 port of this function, probably cURL, but need to check this...The new win32 folder contains WIN32 ports of
opendir
andasprintf
... and could includegettimeofday()
if it was ever needed...Recommend this update...