]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Add a BSD-licensed sort rewrite that was started by me and later completed
authorGabor Kovesdan <gabor@FreeBSD.org>
Fri, 11 May 2012 12:37:16 +0000 (12:37 +0000)
committerGabor Kovesdan <gabor@FreeBSD.org>
Fri, 11 May 2012 12:37:16 +0000 (12:37 +0000)
commitc66bbc91434501b889413241e8f1bd1487a92c5b
tree3e40b9cc3fe049e973d33d7b35ce3fa3bdcf95dd
parentfdbe55fccb1c5de177001aa691addb77fb297362
Add a BSD-licensed sort rewrite that was started by me and later completed
with the major functionality and optimizations by Oleg Moskalenko.
It is compatible with the latest version of POSIX and the current GNU sort
version that we have in base.  Beside this, it implements all the
functionality introduced in later versions of GNU sort.  For now, it will
be installed as "bsdsort", keeping GNU sort as the default sort
implementation.
18 files changed:
usr.bin/sort/Makefile [new file with mode: 0644]
usr.bin/sort/bwstring.c [new file with mode: 0644]
usr.bin/sort/bwstring.h [new file with mode: 0644]
usr.bin/sort/coll.c [new file with mode: 0644]
usr.bin/sort/coll.h [new file with mode: 0644]
usr.bin/sort/file.c [new file with mode: 0644]
usr.bin/sort/file.h [new file with mode: 0644]
usr.bin/sort/mem.c [new file with mode: 0644]
usr.bin/sort/mem.h [new file with mode: 0644]
usr.bin/sort/nls/C.msg [new file with mode: 0644]
usr.bin/sort/nls/hu_HU.ISO8859-2.msg [new file with mode: 0644]
usr.bin/sort/radixsort.c [new file with mode: 0644]
usr.bin/sort/radixsort.h [new file with mode: 0644]
usr.bin/sort/sort.1.in [new file with mode: 0644]
usr.bin/sort/sort.c [new file with mode: 0644]
usr.bin/sort/sort.h [new file with mode: 0644]
usr.bin/sort/vsort.c [new file with mode: 0644]
usr.bin/sort/vsort.h [new file with mode: 0644]