wrotycz wrote:
In (c)lzip definition of mkdir takes 2 arguments while in windows it
takes 1, which causes compilation error.

Thank you for reporting this.

I have fixed it mostly as you suggest, but prepending an underscore as suggested by gnulib[1]. I have inserted the following at line 47 of main.cc and at corresponding lines in the rest of tools:

  #define mkdir(name,mode) _mkdir(name)

[1] http://www.gnu.org/software/gnulib/manual/html_node/mkdir.html

Best regards,
Antonio.

Reply via email to