Re: [Toybox] crc64?

2018-02-04 Thread Rob Landley
On 02/04/2018 07:54 PM, Rob Landley wrote: > But the largest distribution in the wild seems to be the "jones" one > used by redis: > > https://raw.githubusercontent.com/antirez/redis/88c1d9550d198fd7df426b19ea67e9c51c92a811/src/crc64.c > > Those are also the only three listed here: > > https://u

[Toybox] Release prep.

2018-02-04 Thread Rob Landley
For some reason I thought the next release should happen the middle of this month, but it turns out it was the middle of last month. (Ok, I've been distracted.) So I'm giving myself one more week to tidy up loose ends. I need to fix ps -T, might get ping ready to promote... Anybody want to shout

[Toybox] making ./configure executable.

2018-02-04 Thread Rob Landley
I tried adding this to configure: if [ "$(basename "$0")" == configure ] then echo "This file is just a persistent place to set environment variables." echo "You probably want to run 'make defconfig'." echo "Type 'make help' for more options, or see the README." exit 1 fi But if your #!/b

[Toybox] crc64?

2018-02-04 Thread Rob Landley
One of the things I've been pondering is adding crc64. Except... there's no agreement what crc64 should _be_? Wikipedia[citation needed] seems to recommend the ECMA polynomial (0x42F0E1EBA9EA3693 used by xz?): https://en.wikipedia.org/wiki/Cyclic_redundancy_check#Polynomial_representations_of_cycl