bug-xorriso
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-xorriso] About run xorriso under Win32


From: Thomas Schmitt
Subject: Re: [Bug-xorriso] About run xorriso under Win32
Date: Thu, 27 Nov 2014 08:22:17 +0100

Hi,

> The libisofs/util.c still has compile issue for the below line:
> tzoffset = ( - timezone / 60 / 15 ) + 4 * tm.tm_isdst;

Stupid me. There is a second occurence of "timezone" in libisofs/util.c.

The appropriate change would be:

-     tzoffset = ( - timezone / 60 / 15 ) + 4 * tm.tm_isdst;
+ #ifndef Libburnia_timezonE
+ #define Libburnia_timezonE timezone
+ #endif
+     tzoffset = ( - Libburnia_timezonE / 60 / 15 ) + 4 * tm.tm_isdst;

./configure on Cygwin is supposed to define Libburnia_timezonE
to be 0, as long as i do not have a clue how the timezone()
function is supposed to work (input parameters, output time units).
This obviously worked for the other occasion where i already
replaced "timezone" by my own macro symbol.

I'll fix this, make a new upload, and ask you for a final
compile time test. 


> > Further it is supposed to use flag option O_BINARY with
> > all open(2) calls.
> Great! It works for me, the iso can boot both bios machine and efi machine.

So we had further content alterations by that brain damaged
text mode of Cygwin resp. Microsoft.


> Thank you very much for your effort! :-)

Don't hesitate to report further bugs and/or ask for advice.


Have a nice day :)

Thomas




reply via email to

[Prev in Thread] Current Thread [Next in Thread]