phunix/lib/libarchive
Ben Gras f3d5a9dc61 Reduce compiler/libraries/headers cases to only two
1. ack, a.out, minix headers (moved to /usr/include.ack),
	   minix libc
	2. gcc/clang, elf, netbsd headers (moved to /usr/include),
	   netbsd libc (moved to /usr/lib)

So this obsoletes the /usr/netbsd hierarchy.

No special invocation for netbsd libc necessary - it's always used
for gcc/clang.
2011-07-04 04:09:52 +02:00
..
2011-06-23 19:25:36 +02:00
2010-07-13 19:17:02 +00:00
2010-11-12 18:38:10 +00:00
2010-11-12 18:38:10 +00:00
2010-07-13 19:17:02 +00:00
2010-07-13 19:17:02 +00:00
2010-07-13 19:17:02 +00:00

What's supported, what's not
----------------------------
This port corresponds to libarchive-2.8.3. The following formats supported
by libarchive are NOT supported in the port:
1) iso9660
2) various variants of cpio

In addition though xz and lzma are included, due to the lack of
liblzma and xz utilities on Minix they are of not much use. Of the remaining
formats I know that tar and its variants (tar.gz, tar.bz2 etc) work. 

Notes on the port
-----------------
The cause for all changes is the fact that ACK does not have a 64 bit types.
Most of the changes are 'downsizing' of types from 64 bits to 32 bits.
Also a signed type is used for the measuring sizes so nothing > 2GB will work.

Most of the changes are repetitive and can be classified into two types:

1) Changing sizes/offsets/timestamps from 64bit types to size_t, ssize_t, off_t
   time_t
2) Changing functions that either decode or encode sizes/offsets/timestamps
   from or to archives to use 32 bit types.