home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip540.zip / INSTALL < prev    next >
Text File  |  1998-11-28  |  29KB  |  526 lines

  1. __________________________________________________________________________
  2.  
  3.   This is the Info-ZIP file INSTALL (for UnZip), last updated 28 Nov 98.
  4. __________________________________________________________________________
  5.  
  6.   Yes, this is a rather long file, but don't be intimidated:  much of its
  7.   length is due to coverage of multiple operating systems and of optional
  8.   customization features, large portions of which may be skipped.
  9. __________________________________________________________________________
  10.  
  11.  
  12.  
  13. To compile UnZip, UnZipSFX and/or fUnZip (quick-start instructions):
  14. ========================================
  15.  
  16. (1) Unpack everything into a work directory somewhere, and make sure you're
  17.     in the main UnZip directory (the one with this file in it).
  18.     * (See note below concerning line termination format used in the source
  19.        distribution)
  20.  
  21. (2) Copy the appropriate makefile into the current directory, except under
  22.     OS/2.
  23.  
  24. (3) Run your "make" utility on the makefile (e.g., "nmake -f makefile.msc").
  25.  
  26. (4) Try out your new UnZip the way you would any new utility:  read the
  27.     docs first.
  28.  
  29.     Ah ha ha ha!!  Oh, that kills me.  But seriously...for VMS, UnZip must
  30.     be installed as a "foreign symbol"; see the Install section below or
  31.     [.vms]readme.vms for details.  (It basically involves adding a line
  32.     sort of like this to login.com:    $ unzip == "$disk:[dir]unzip.exe")
  33.  
  34.     For DOS and other OSes without explicit timezone support (i.e., everybody
  35.     but Unix, Windows 95 and NT), make sure the "TZ" environment variable is
  36.     set to a valid and reasonable value; see your compiler docs for details.
  37.  
  38. (*) The unzip sources as well as other Info-ZIP source archives are packaged
  39.     in Unix format. All text files use single LF (Ascii 0x0a) characters as
  40.     line terminators.  On systems that use different conventions for plain text
  41.     files (e.g.:DOS,Win9x,WinNT,OS/2 -> combined CR+LF; MacOS -> single CR),
  42.     some utilities (editors, compilers, etc.) may not accept source files
  43.     with LF line terminators.
  44.     For these systems, we recommend to use Info-ZIP's UnZip utility for
  45.     extraction of our distribution archives, applying the command option
  46.     "-a" (= translate text files to native format) in the extraction command.
  47.     In case this procedure is not applicable, an appropiate third-party
  48.     conversion utility may be used to achieve the desired line termination
  49.     style (examples: "flip", available for Unix, DOS, OS/2; or "tr" on Unix).
  50.  
  51.  
  52. To compile UnZip, UnZipSFX and/or fUnZip (detailed instructions):
  53. ========================================
  54.  
  55. (1) Unpack *.c and *.h (the actual source files), preserving the directory
  56.     structure (e.g., ./unix/unix.c).  The sole exception is TOPS-20, where
  57.     tops20/* should be unpacked into the current directory, but TOPS-20
  58.     is no longer fully supported anyway.
  59.  
  60.     If you wish to compile with decryption enabled, you must get the zcrypt
  61.     package (see the "WHERE" file).  Unpack crypt.c and crypt.h from the
  62.     zcrypt archive, overwriting the dummy versions supplied with UnZip.  If
  63.     you don't have any sort of unzipper available, you'll have to compile the
  64.     non-crypt version first and use that to unpack the full crypt sources,
  65.     then recompile.
  66.  
  67.  
  68. (2) Choose the appropriate makefile based on the description in the Con-
  69.     tents file for your OS (that is, there's only one for Unix or OS/2, but
  70.     MS-DOS and several other OSes have several, depending on the compiler).
  71.     Copy it into the current directory and rename if necessary or desired.
  72.     (Some makefiles can be invoked in place; see (5) below.)
  73.  
  74.     Don't be afraid to read the makefile!  Many options will be explained only
  75.     in the comments contained therein.  The defaults may not quite suit your
  76.     system.  When making changes, remember that some "make" utilities expect
  77.     tabs as part of the makefile syntax.  Failure with cryptic error messages
  78.     will result if your editor quietly replaces those tabs with spaces.
  79.  
  80.     Special point of confusion:  some non-MSDOS makefiles contain MS-DOS
  81.     targets (useful for cross-compilations). An example is the OS/2 makefile
  82.     os2/makefile.os2 that contains the gccdos target for DOS emx+gcc and
  83.     some more DOS related targets for Watcom C and MSC. But since version 5.3,
  84.     the msdos subdirectory contains makefiles for all supported DOS compilers.
  85.     [The old djgpp, djgpp1 and gcc_dos targets in unix/Makefile have been
  86.     removed in 5.3; use msdos/makefile.dj* instead.]
  87.  
  88.     Extra-special point of confusion:  makefile.os2 expects to remain in
  89.     the os2 subdirectory.  Invoke it via "nmake -f os2/makefile.os2 gcc",
  90.     for example.
  91.  
  92.  
  93. (3) If you want a non-standard version of UnZip, define one or more of the
  94.     following optional macros, either by adding them to the LOCAL_UNZIP
  95.     environment variable or by editing your makefile as appropriate.  The
  96.     syntax differs from compiler to compiler, but macros are often defined
  97.     via "-DMACRO_NAME" or similar (for one called MACRO_NAME).  Note that
  98.     some of these may not be fully supported in future releases (or even
  99.     in the current release).  Note also that very short command lines in
  100.     MS-DOS (128 characters) may place severe limits on how many of these
  101.     can be used; if need be, the definitions can be placed at the top of
  102.     unzip.h instead (it is included in all source files)--for example,
  103.     "#define MACRO_NAME", one macro per line.
  104.  
  105.       DOSWILD   (MS-DOS only)
  106.         Treat trailing "*.*" like Unix "*" (i.e., matches anything); treat
  107.         trailing "*." as match for files without a dot (i.e., matches any-
  108.         thing, as long as no dots in name).  Special treatment only occurs
  109.         if patterns are at end of arguments; i.e., "a*.*" matches all files
  110.         starting with "a", but "*.*c" matches all files ending in "c" *only*
  111.         if they have a dot somewhere before the "c".  [The default method of
  112.         specifying files without a dot would be "* -x *.*", making use of
  113.         UnZip's exclude-files option.]  The matching is actually the same as
  114.         Unix, if you assume that undotted filenames really have an invisible
  115.         dot at the end, which is how DOS and related systems treat filenames
  116.         in general.  All other regular expressions (including "?" and
  117.         "[range_of_chars]") retain their Unix-like behavior.
  118.  
  119.       VMSWILD   (VMS only)
  120.         Use parentheses rather than brackets to delimit sets (ranges), and
  121.         use '%' instead of '?' as the single-character wildcard for internal
  122.         filename matching.  (External matching of zipfile names always uses
  123.         the standard VMS wildcard facilities; character sets are disallowed.)
  124.  
  125.       VMSCLI   (VMS only)
  126.         Use VMS-style "slash options" (/FOOBAR) instead of the default Unix-
  127.         style hyphenated options (-f).  This capability does not affect options
  128.         stored in environment variables (UNZIP_OPTS or ZIPINFO_OPTS); those use
  129.         the Unix style regardless. Beginning with UnZip 5.32, the supplied
  130.         VMS Makefiles and make procedures generate both VMS-style and default
  131.         "UNIX style" executables; you should NOT add VMSCLI to the custom
  132.         options.
  133.  
  134.       CHECK_VERSIONS   (VMS only)
  135.         UnZip "extra fields" are used to store VMS (RMS) filesystem info,
  136.         and the format of this information may differ in various versions
  137.         of VMS.  Defining this option will enable UnZip warnings when the
  138.         stored extra-field VMS version(s) do(es) not match the version of
  139.         VMS currently being used.  This is a common occurrence in zipfiles
  140.         received from other sites, but since the format of the filesystem
  141.         does not seem to have changed in years (including on Alpha and Open-
  142.         VMS systems), the warnings are not enabled by default.
  143.  
  144.       RETURN_CODES   (VMS only)
  145.         VMS interprets return codes according to a rigid set of guidelines,
  146.         which means it misinterprets normal UnZip return codes as all sorts
  147.         of really nasty errors.  Therefore VMS UnZip returns an alternate set
  148.         of return codes; since these may be difficult to interpret, define
  149.         RETURN_CODES for human-readable explanations.
  150.  
  151.       VMS_TEXT_CONV   (everybody except VMS)
  152.         VMS text files archived with the "-V" option are only semi-readable at
  153.         best when extracted on other systems.  Defining this option enables
  154.         UnZip's -aa option to attempt to convert such files to native text
  155.         format.  Non-VMS UnZips don't actually detect the precise VMS format
  156.         of the files, however, but instead rely on some reasonably good
  157.         heuristics (i.e., guesses).  Therefore this option is not enabled by
  158.         default, but it can be extremely useful on those rare occasions when
  159.         a VMS text file must be extracted as normal text.
  160.  
  161.       USE_VFAT   (MS-DOS only, for using same executable under DOS and Win95/NT)
  162.         djgpp 2.x and emx/gcc+RSX 5.1 can detect when they are running under a
  163.         Win32 DOS box and will accordingly enable long-filename support.  For
  164.         now only djgpp 2.x and emx/gcc with RSX 5.1 or later have this feature
  165.         (and it is defined by default in msdos/makefile.dj2 and makefile.emx),
  166.         but if/when other compilers build in similar support, define this
  167.         macro to enable its use.  See also msdos/doscfg.h.  [Note that djgpp
  168.         2.0's LFN support is flaky; users should upgrade to 2.01 or later.]
  169.  
  170.       NOTIMESTAMP
  171.         This option disables the -T option, which basically does exactly what
  172.         Zip's -go options do (i.e., set the timestamp of the zipfile to that of
  173.         the newest file in the archive without rewriting the archive).  Unlike
  174.         Zip, however, UnZip supports wildcard specifications for the archive
  175.         name; for example, "unzip -T *.zip" will set the dates of all zipfiles
  176.         in the current directory.  (UnZip's option is also much faster.)
  177.  
  178.       DATE_FORMAT=DF_DMY or DF_MDY or DF_YMD
  179.         This option controls the order in which date components are printed
  180.         in listings:  day-month-year or month-day-year or year-month-day.
  181.         For DOS derivatives the format is automatically obtained from the
  182.         operating system; most others default to DF_MDY.
  183.  
  184.       ACORN_FTYPE_NFS  (currently, Unix only)
  185.         This option enables a -F option that instructs UnZip to interpret the
  186.         filetype information extracted from Acorn RiscOS extra field blocks.
  187.         The filetype IDs are translated into "NFS filetype extensions" and
  188.         appended to the names of the extracted files. This feature facilitates
  189.         maintance of Unix-based NFS volumes that are exported to Acorn RiscOS
  190.         systems.
  191.  
  192.       QLZIP  (Unix only)
  193.         Add some support for QDOS extra fields. This option enables Unix
  194.         UnZip to append "datalen info" to QDOS exec type files in the same
  195.         format as used by QDOS cross-compilers on Unix or the qltools v2.2(+).
  196.  
  197.       UNIXBACKUP   (Unix only)
  198.         This option enables a -B option that instructs UnZip to rename files
  199.         that would normally be overwritten.  The renamed files are given a
  200.         tilde suffix (`~').  Note that previously renamed files may be over-
  201.         written without notice, even if the -n option is given.
  202.  
  203.       OS2_EAS
  204.         List the sizes of OS/2 EAs and ACLs for each file as two extra columns
  205.         in "unzip -l" output.  This is primarily useful for OS/2 systems, but
  206.         because zipfiles are portable, OS2_EAS can be defined for any system.
  207.         (May be extended someday to show sizes of Mac resource forks, RISCOS
  208.         and VMS file info, etc.)
  209.  
  210.       DELETE_IF_FULL  (anybody with unlink() function)
  211.         If a write error is encountered (most likely due to a full disk),
  212.         enabling this option will cause the incomplete file to be deleted
  213.         instead of closed normally.  This is particularly useful for the
  214.         Windows CE port, which must generally contend with extremely limited
  215.         resources.
  216.  
  217.       ASM_CRC   (Amiga/Aztec C; many x86 systems:  DOS, OS/2, Win32, Unix)
  218.         Use an assembler routine to calculate the CRC for each file (speed).
  219.  
  220.       ASM_INFLATECODES   (Amiga/Aztec C only, for now)
  221.         Use an assembler version of inflate_codes() for speed.
  222.  
  223.       OLD_EXDIR
  224.         No longer supported.
  225.  
  226.       SFX_EXDIR
  227.         Enable the "-d <extract_dir>" option for UnZipSFX.  By default it is
  228.         disabled so as to generate the smallest possible executable stub, but
  229.         for use with automated installation scripts and the like it may be
  230.         useful to enable -d.
  231.  
  232.       NO_ZIPINFO
  233.         Compile without ZipInfo mode (-Z) enabled; makes a smaller executable
  234.         because many text strings are left out.  Automatically enabled for
  235.         some small-model compiles under MS-DOS and OS/2, so ordinarily there
  236.         is no need to specify this explicitly.  (Note that even with this
  237.         defined, the resulting executable may still be too big to extract
  238.         some zipfiles correctly, if compiled with the small memory model.)
  239.  
  240.       LZW_CLEAN   (now default)
  241.       USE_UNSHRINK
  242.         The "shrinking" algorithm from PKZIP 1.0 is an LZW variant.  Unisys
  243.         patented the Lempel-Ziv-Welch algorithm in 1985 and has publicly
  244.         claimed that decompression is covered by it.  (IBM also patented the
  245.         same thing in a filing 3 weeks prior to Unisys's.)  Therefore un-
  246.         shrinking is disabled by default, but those with LZW licenses can
  247.         enable it by defining USE_UNSHRINK.  (Unshrinking was used by PKZIP
  248.         1.0 and 1.1, and Zip 1.0 and 1.1.  All newer archives use only the
  249.         deflation method.)
  250.  
  251.       COPYRIGHT_CLEAN   (now default)
  252.       USE_SMITH_CODE
  253.         The last chunk of code in UnZip that was blatantly derived from Sam
  254.         Smith's unzip 2.0 (as in, "substantially similar") is in unreduce.c.
  255.         Since reducing was only used by very early PKZIP beta versions (0.9x),
  256.         support for it is now omitted by default (COPYRIGHT_CLEAN).  To in-
  257.         clude unreducing capability, define USE_SMITH_CODE.  Note that this
  258.         subjects UnZip to any and all restrictions in Smith's copyright; see
  259.         the UnZip COPYING file for details.
  260.  
  261.       PASSWD_FROM_STDIN   (with full crypt sources only; Unix, VMS only)
  262.         Used to allow the password on encrypted files to be read from stdin
  263.         rather than the default stderr.  This was useful for those who wished
  264.         to automate the testing or decoding of encrypted archives (say, in a
  265.         shell script via ``echo "password" | unzip -tq archive''), but as of
  266.         version 5.3, UnZip has a -P option for passing a password directly to
  267.         the program.  PASSWD_FROM_STDIN will therefore probably be phased out
  268.         in future versions.  Note that the same security warnings given in the
  269.         description of the -P option apply here as well.
  270.  
  271.       DEBUG
  272.         Used for debugging purposes; enables Trace() statements.  Generally
  273.         it's best to compile only one or two modules this way.
  274.  
  275.       DEBUG_TIME
  276.         Used for debugging the timezone code in fileio.c; enables TTrace()
  277.         statements.  This code is only used for the freshen/update options
  278.         (-f and -u), and non-Unix compilers often get it wrong.
  279.  
  280.  
  281. (4) If you regularly compile new versions of UnZip and always want the same
  282.     non-standard option(s), you may wish to add it (them) to the LOCAL_UNZIP
  283.     environment variable (assuming it's supported in your makefile).  Under
  284.     MS-DOS, for example, add this to AUTOEXEC.BAT:
  285.  
  286.         set LOCAL_UNZIP=-DDOSWILD -DDATE_FORMAT=DF_DMY
  287.  
  288.     You can also use the variable to hold special compiler options (e.g.,
  289.     -FPi87 for Microsoft C, if the x87 libraries are the only ones on your
  290.     disk and they follow Microsoft's default naming conventions; MSC also
  291.     supports the CL environment variable, however).
  292.  
  293.  
  294. (5) Run the make utility on your chosen makefile:
  295.  
  296.       Unix
  297.         For most systems it's possible to invoke the makefile in place, at
  298.         the possible cost of an ignorable warning; do "make -f unix/Makefile
  299.         list" to get a list of possible system targets, and then "make -f
  300.         unix/Makefile target" for your chosen target.  The "generic" target
  301.         works for most systems, but if it fails with a message about ftime()
  302.         unresolved or timezone redefined, do "make clean", "make help", and
  303.         then either "make generic2" or "make generic3" as instructed.  If all
  304.         else fails, read the makefile itself; it contains numerous comments.
  305.         (One of these days we'll make a configure script that automates this
  306.         procedure better.)
  307.  
  308.       VMS
  309.         For a one-time build of the default UnZip, simply run the supplied
  310.         command file MAKE_UNZ.COM.  To use either DEC C on an Alpha or the
  311.         default compiler (DEC C if available, else VAX C) on a VAX, type
  312.         "@make_unz" (after copying make_unz.com into the current directory;
  313.         otherwise do "@[.vms]make_unz" to invoke it in place).
  314.         If you want to force the use of VAX C when both VAX C and DEC C are
  315.         available, do "@make_unz vaxc" (or "@[.vms]make_unz vaxc").
  316.         To use GNU C (gcc) on either platform, do "@make_unz gnuc".
  317.         (NOTE: Currently, gcc for VMS(AXP) is not yet available!)
  318.         The command procedure MAKE_UNZ.COM now recognizes custom feature
  319.         options supplied in the logical name LOCAL_UNZIP; details are
  320.         explained in the comments at the top of MAKE_UNZ.COM.
  321.  
  322.         For repeated makes or other hacker-like tinkering with the sources,
  323.         or to create a custom version of UnZip, you may use the included "MMS"
  324.         makefile, DESCRIP.MMS.  Copy it into the current directory, read the
  325.         comments at the top of it and run MadGoat's free MMS clone "MMK" on it.
  326.         Newer versions of DEC's MMS should work, too, but older ones apparently
  327.         choke on some MMK-specific extensions in DESCRIP.MMS.  (If somebody
  328.         has an "older" version that works, let us know and we'll remove this
  329.         caveat.)
  330.  
  331.       MS-DOS
  332.         See the msdos\Contents file for notes regarding which makefile(s) to
  333.         use with which compiler.  In summary:  pick one of msdos\makefile.*
  334.         as appropriate, or (as noted above) use the OS/2 gccdos target for
  335.         emx+gcc.  There is also an mscdos cross-compilation target in
  336.         os2\makefile.os2 and a sco_dos cross-compilation target in the Unix
  337.         makefile.  For Watcom 16-bit or 32-bit versions, see the comments in
  338.         the OS/2 section below.
  339.  
  340.         After choosing the appropriate makefile and editing as necessary or
  341.         desired, invoke the corresponding make utility.  Microsoft's NMAKE
  342.         and the free dmake and GNU make utilities are generally the most
  343.         versatile.  The makefiles in the msdos directory can be invoked in
  344.         place ("nmake -f msdos\makefile.msc", for example).
  345.  
  346.       OS/2
  347.         Either GNU make, nmake or dmake may be used with the OS/2 makefile;
  348.         all are freely available on the net.  Do "nmake -f os2\makefile.os2",
  349.         for example, to get a list of supported targets.  More generally,
  350.         read the comments at the top of the makefile for an explanation of
  351.         the differences between some of the same-compiler targets.
  352.  
  353.       Win32 (WinNT or Win95)
  354.         You will need Microsoft Visual C++ 2.x for Win95 or NT (Intel, MIPS,
  355.         Alpha, PowerPC?), or Watcom C++ for Win95 or NT (Intel only). As an
  356.         alternative for Intel platforms, GNU C (the emx/rsxnt port) is now
  357.         supported as well. DEC C/C++ for NT/Alpha may or may not still work.
  358.         For the Watcom compiler, use WMAKE and win32\makefile.wat; for the
  359.         others, use NMAKE and win32\Makefile. With emx+gcc, a good choice is
  360.         GNUMake 3.75 from the djgpp V2.01 distribution.
  361.  
  362.       WinCE (WinCE or WinNT)
  363.         Only Microsoft Visual C++ 5.0 or later is supported.  Use the included
  364.         project file and check wince\README for details.
  365.  
  366.       AmigaDOS
  367.         SAS/Lattice C and Manx Aztec C are supported.  For SAS C 6.x do "smake
  368.         -f amiga/smakefile all"; for Aztec C do "make -f amiga/makefile.azt
  369.         all".  The Aztec C version supports assembly-language versions of two
  370.         routines; these are enabled by default.
  371.  
  372.       Atari TOS
  373.         Turbo C is no longer supported; use gcc and the MiNT libraries, and
  374.         do "make".  Note that all versions of gcc prior to 2.5.8 have a bug
  375.         affecting 68000-based machines (optimizer adds 68020 instructions).
  376.         See atari\README for comments on using other compilers.
  377.  
  378.       Macintosh
  379.         Metrowerks CodeWarrior Pro 4 with Universal Interfaces 3.1 is the only
  380.         currently supported compiler, although the Mac Programmer's Workbench
  381.         (MPW) and Think C were supported at one time and still have some hooks.
  382.         Other Compilers may work too, no compiler specific instructions
  383.         (pragma, header, macros, ...) were used in the code.
  384.         For CodeWarrior Pro 4, un-BinHex the CodeWarrior project file and
  385.         UnZip resource file (using Stuffit Expander or BinHex 4.0 or later),
  386.         then open the project and click on the compile button.
  387.         See ":macos:Contents" for the possible project targets.
  388.         Link order of the standard libraries is very important: Link all
  389.         sources first and all standard libraries last.
  390.  
  391.       Acorn (RISC OS)
  392.         Extract the files from the archive and place in standard 'Acorn' C
  393.         form (i.e., *.c, *.h and *.s become c.*, h.* and s.*, respectively),
  394.         either using the UNZIP$EXTS environment variable and a pre-built UnZip
  395.         binary, or using Spark[FS] and doing it manually.  Then copy the
  396.         Acorn.Makefile to the main UnZip directory and either type 'amu' or
  397.         use the desktop make utility.
  398.  
  399.       VM/CMS
  400.         Unpack all the files and transfer them with ASCII -> EBCDIC conver-
  401.         sion to an appropriate directory/minidisk/whatever, then execute
  402.         UNZVMC to compile and link all the sources.  This may require C/370
  403.         version 2.1 or later and certain `nucleus extensions,' although
  404.         UnZip 5.3 has been reported to compile fine with the `ADCYCLE C/370
  405.         v1.2 compiler.'  Note that it will abend without access to the C/370
  406.         runtime library.  See the README.CMS file for more details.
  407.  
  408.       MVS
  409.         Unpack all the files and transfer them to an appropriate PDS with
  410.         ASCII -> EBCDIC conversion enabled, then edit UNZMVSC.JOB as required,
  411.         and execute it to compile and link all the sources.  C/370 2.1 or
  412.         later is required.  See README.MVS for further details.  [This is a
  413.         new port and may need a little more work even to compile.]
  414.  
  415.       Human68K
  416.         [This is a Japanese machine and OS.]  It appears that GNU make and
  417.         gcc are required; presumably just do "gmake -f human68k/Makefile.gcc"
  418.         to build everything.  This port has not been tested since the 5.12
  419.         release.
  420.  
  421.       TOPS-20
  422.         [No longer fully supported due to new, unported features, although
  423.         patches are always accepted.]  Unpack all files into the current
  424.         directory only (including those in the zipfile's tops20 directory),
  425.         then use make.mic and "do make".
  426.  
  427.       BeOS
  428.         You can run the BeOS makefile in place by typing "make -f
  429.         beos/Makefile".  In fact, this is how the author tests it.
  430.  
  431.     Running the appropriate make utility should produce three executables on
  432.     most systems, one for UnZip/ZipInfo, one for UnZipSFX, and one for fUnZip.
  433.     (VMS is one prominent exception:  fUnZip makes no sense on it.  The Amiga
  434.     produces a fourth executable called MakeSFX, which is necessary because
  435.     Amiga self-extracting archives cannot be created by simple concatenation.
  436.     If necessary the source amiga/makesfx.c can be compiled on other systems.)
  437.     Read any OS-specific README files for notes on setting things up for
  438.     normal use (especially for VMS) and for warnings about known quirks and
  439.     bugs in various compilers (especially for MS-DOS).
  440.  
  441.     Also note that many OSes require a timezone variable to be set correctly
  442.     (often "TZ"); Unix and VMS generally do so by default, Win95/NT do if set
  443.     up properly, but other OSes generally do not.  See the discussion of the
  444.     -f and -u options in the UnZip man page (or unzip.doc).  BeOS doesn't
  445.     currently support timezone information at all, but this will probably be
  446.     added soon.
  447.  
  448.     Then test your new UnZip on a few archives and let us know if there are
  449.     problems (but *please* first make certain that the archives aren't actu-
  450.     ally corrupted and that you didn't make one of the silly mistakes dis-
  451.     cussed in the documentation).  If possible, double-check any problems
  452.     with PKUNZIP or with a previous version of UnZip prior to reporting a
  453.     "bug."  The zipfile itself may be damaged.
  454.  
  455.  
  456.  
  457. To install:
  458. ===========
  459.  
  460. Unix
  461.   The default prefix for the installation location is /usr/local (things
  462.   go into the bin and man/man1 subdirectories beneath the prefix), and
  463.   the default man-page extension is "1" (corresponding to man/man1, above).
  464.   To install as per the defaults, do "make install"; otherwise do "make
  465.   prefix=/your/path manext=your_extension install".  (For Intel Unix flavors
  466.   where the assembler CRC routines were used [ASM_CRC], use the install_asm
  467.   target instead of the regular install target.)  For example, to install
  468.   in your home directory with "l" as the man-page extension (for "local"),
  469.   do "make prefix=$HOME manext=l install".  Permissions will be 755 for the
  470.   executables and 644 for the man pages.  In general root must perform in-
  471.   stallation into a public directory.  Do "rehash" if your shell requires
  472.   it in order to find the new executables.
  473.  
  474. VMS
  475.   Install UnZip as foreign symbol by adding this to login.com:
  476.  
  477.        $ unzip == "$disk:[dir]unzip.exe"
  478.        $ zipinfo == "$disk:[dir]unzip.exe ""-Z"""
  479.  
  480.   where "disk" and "dir" are the location of the UnZip executable; the "$"
  481.   before the disk name is important, as are the double-double-quotes around
  482.   the -Z.  Some people, including the author, prefer a short alias such as
  483.   "ii" instead of "zipinfo"; edit to taste.  Optionally also install unzipsfx
  484.   for use with the MAKESFX.COM command file.  See vms/README (or [.VMS]README.)
  485.   for details on this and for notes/warnings about zipfiles and UnZip under
  486.   VMS.
  487.  
  488. OS/2, MS-DOS, NT, Atari, Amiga
  489.   Move or copy unzip.exe (or unzip.ttp, or UnZip, or whatever) to a direc-
  490.   tory in your path; also possibly copy the UnZip executable to zipinfo.exe
  491.   (or ii.exe), or else create an alias or a batch/command file for ZipInfo
  492.   ("@unzip -Z %1 %2 %3 %4 %5 %6 %7 %8 %9" under MS-DOS).  The latter is only
  493.   relevant if NO_ZIPINFO was *not* defined, obviously...  Under djgpp 2.x,
  494.   zipinfo.exe is a 2K stub symbolically linked to unzip.exe.
  495.  
  496. Acorn RISC OS
  497.   Copy the executables unzip, funzip and zipinfo to somewhere in your
  498.   Run$Path.  See your Welcome manual if you don't know about Run$Path.
  499.  
  500. BeOS
  501.   The default prefix for the installation location is /boot/usr/local
  502.   (things go into the bin and man/man1 subdirectories beneath the prefix),
  503.   and the default man-page extension is "1" (corresponding to the man/man1,
  504.   above).  Of course, these Unix man-pages aren't useful until someone ports
  505.   something that can format them... plain text versions are also installed
  506.   with an extension of ".doc".  To install, do a "make install", or to
  507.   change the prefix, do "make prefix=/your/path install".  For example, to
  508.   install in /boot/bin, do "make prefix=/boot/bin install".
  509.  
  510. Macintosh
  511.   MacZip requires at least System 7 and a Macintosh with a minimum of a
  512.   Motorola 68020 or PowerPC 601 processor. Other configurations may work
  513.   but it is not tested at all.
  514.   The application (MacZip) is distributed as a combination of zip and unzip
  515.   in one program. The offical release is a fat binary with both regular 68K
  516.   and native PowerPC versions included.
  517.   Move the executable(s) somewhere--for example, drag it (or them) to your
  518.   Applications folder.  For easy access, make an alias in the Launcher Control
  519.   Panel or directly on your desktop.
  520.   This port supports also Apple-event.So you can install it in your
  521.   WWW-Browser as a helper-app.
  522.   Look into ":macos:README.TXT" for further info.
  523.  
  524. Human68K, TOPS-20, AOS/VS, MVS, VM/CMS, etc.
  525.   Dunno, sorry...
  526.