home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / PAX20.ZIP / CHANGELO < prev    next >
Text File  |  1990-11-12  |  5KB  |  119 lines

  1. The following things have been done to PAX since the last revision
  2. which was posted to the net:
  3.  
  4. * The paxdir.h and paxdir.c files have been removed.  I have opted
  5.   instead to include Doug Gwyn's dirent package in a separate
  6.   directory.  It is suggested that if you do not have the readdir(),
  7.   seekdir(), telldir(), etc., then you should install Doug's directory
  8.   library into your standard C library.  Too many packages these days
  9.   need these routines.
  10.  
  11. * The source code has been more extensively documented.  The source
  12.   code documentation and formatting style is the consistent throughout
  13.   the code (amazing as it sounds) and all comments have been checked
  14.   for correctness.
  15.  
  16. * The copyright information has changed slightly.  The USENIX
  17.   Association supplied no support for this version of Pax, so they are
  18.   not longer a copyright holder.  This will impact companies which are
  19.   integrating Pax into their products.  The distribution of Pax in
  20.   either source or binary forms are still permitted.
  21.  
  22.   For those that care, the copyright is identical to the Berkeley
  23.   copyright notice (or was as of the last time Keith sent me a copy
  24.   of Berkeley's copyright notice).
  25.  
  26. * The source has been put under Larry Wall's Metaconfig package.  This
  27.   should make installation of Pax easier, especially on some of the
  28.   more esoteric systems out there.  A number of new units have been
  29.   developed to make porting the system using metaconfig work.  I have
  30.   tested it one a wide variety of machines, but if there are problems,
  31.   I would appreciate hearing about them.
  32.  
  33. * In the past versions, there were two slightly different interfaces
  34.   depending on whether the target system was BSD or USG.  These
  35.   differences have been removed so that there is only one interface.
  36.   This will rectify problems with differing output depending on which
  37.   machine Pax was compiled on.
  38.  
  39. * BSD tar had a problem extracting Pax archives because Pax was not
  40.   appending a '/' to the end of directories which were archived.  Now
  41.   all directories have the '/' added.  USG doesn't care if the '/'s
  42.   are there or not.
  43.  
  44. * Pax failed to detect CPIO archives which were not written with the
  45.   -c option.  Pax now recognizes standard cpio format files.
  46.  
  47. * File sizes were not getting correctly reported on 16 bit machines
  48.   due to file size being interpretted as an int, rather than a long.
  49.   The code has been reworked to allow for proper operation on 16-bit
  50.   machines.
  51.  
  52. * All global identifiers now unique to 6 characters for ANSI
  53.   compliance.
  54.  
  55. * Added debugging code which is selectable via compile options and
  56.   command line.  The code for debugging came from Fred Fish's dbug
  57.   library.  I have not included the entire dbug library, only the
  58.   dbug.c and dbug.h files.  The rest of the library can be snarfed
  59.   from the various source archives around the net.
  60.  
  61. * The AT&T Public Domain version of getopt is supplied for those
  62.   systems which do not happen to have it in a C library.  Configure
  63.   will determine if you have getopt(), and if not, will automatically
  64.   use the supplied source code.
  65.  
  66. * Attempting to archive two files, one with name "tar-longlink" linked
  67.   to another with a name exactly 100 character long, the regular file
  68.   could not be archived because the name was said to be too long, and
  69.   the linked file was archived as a regular file.  Posix says that
  70.   when the "linkename" is longer than 99 character, the linked file is
  71.   not to be archived.  Linknames that are longer than 99 characters
  72.   are now not written in the archive, and the file is archived
  73.   normally.
  74.  
  75. * The -m option for cpio was documented as applyint only to the -i and
  76.   cases.  However, cpio -o by dfault used to lose the file
  77.   modification times, but cpio -om would save the original file
  78.   modification times in the archive.  Cpio -o now saves the
  79.   modification time in the archive.
  80.  
  81. * When listing archives, files which were linked were not removed from
  82.   link chain, causing erroneous "unseen link(s)" messages to be
  83.   reported.
  84.  
  85. * Any printfs which use the stat field sb_size now use the "%ld"
  86.   specification rather than the "%d" specification.
  87.  
  88. * Pax now properly determines old style cpio headers.
  89.  
  90. ---- Beta Test Fixes ----
  91.  
  92. * Added missing declaration for symnam in list.c
  93.  
  94. * Configure now understands some of the intracacies of the HP 9000 series
  95.   machines. [Johan Vromans]
  96.  
  97. * dbug is now more portable and tied to the pax configuration parameters.
  98.  
  99. * Added dio_to_binary() to msdos.c and fileio.c for true
  100.   MSDOS character device driver (eg. a real tape drive) support.
  101.   Only works with filename given on command line (not stdout).
  102.   [Harold Walters]
  103.  
  104. * Fixed endless loop condition in outflush() in buffer.c
  105.   when write returns 0 for end of volume.  [Harold Walters]
  106.  
  107. * Added ifdef'd include for mtio.h in append.c. [Harold Walters]
  108.  
  109. * Added check for MIN definition in pax.h [Harold Walters]
  110.  
  111. * Updated README for MSDOS stuff [Harold Walters]
  112.  
  113. * Configure now searches for major rather then makedev when determining
  114.   which header major and minor are in.
  115.  
  116.  
  117. Mark H. Colburn
  118. Open Systems Architects, Inc.
  119.