search for: dosish

Displaying 5 results from an estimated 5 matches for "dosish".

Did you mean: dosis
2014 Dec 15
6
rsync output under CentOS 6
Hello Elias, Monday, December 15, 2014, 4:13:20 PM, you wrote: EP> Sounds like it might be differences in precision of the timestamp. Could be, thoght the NAS box has the sending system as it's NTP server so their times should be in sync. EP> Check out the `--modify-window` option. Doesn't seem to stop all the folders being listed even though nothing is transferred.
2014 Dec 16
0
rsync output under CentOS 6
...Free World/ > music/ZZ Top/ > music/ZZ Top/Live From Texas/ > music/ZZ Top/The Best of ZZ Top/ > music/ZZ Top/ZZ Top Greatest Hits/ > music/lost+found/ If you don't want the directories themselves checked you may want the -O (--omit-dir-times) option. If this is a CIFS or other DOSish filesystem you may also need --no-o --no-p and/or --no-g to ignore other file attributes. Stuart
2013 Dec 19
0
Trying to compile for OS/2
Hi I hope I have found the right list :-) If not, my apologies and a pointer would be appreciated. I am trying to compile openssh-6.3p1 for OS/2 aka EcomStation. For those unfamiliar OS/2 is a DOSish OS but usually porting *nix apps is pretty straightforward. It is complicated by the fact that our current libc implementation of pipe() is flawed and I have to use socketpair() instead. I think I have found all the places where pipes are allocated and changed to use socketpair. It is furt...
2019 Jul 19
4
Prelease now available
Erik de Castro Lopo wrote: > Hopefull the final release candidate: > > http://mega-nerd.com/tmp/flac-1.3.3rc3.tar.xz > http://mega-nerd.com/tmp/flac-1.3.3rc3.tar.xz.asc I am assuming everyone was happy with that and that I can release a new version. Cheers, Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo
2017 Jan 15
3
unsigned int and FLAC__uint32 are used interchangeably
lvqcl wrote: > Also MSVC fails because src/libFLAC/include/private/bitmath.h now > contains "uint32_t long idx" instead of "unsigned long idx". Ah, missed that because it was MSVC code. They should be `uint64_t`. > According to MSDN _BitScanReverse*() functions have signatures: > unsigned char _BitScanReverse(unsigned long *, unsigned long); > unsigned char