home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip201.zip / revision.h < prev    next >
Text File  |  1993-09-18  |  2KB  |  52 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1993 Mark Adler, Richard B. Wales, Jean-loup Gailly,
  4.  Kai Uwe Rommel and Igor Mandrichenko.
  5.  Permission is granted to any individual or institution to use, copy, or
  6.  redistribute this software so long as all of the original files are included,
  7.  that it is not sold for profit, and that this copyright notice is retained.
  8.  
  9. */
  10.  
  11. /*
  12.  *  revision.h by Mark Adler.
  13.  */
  14.  
  15. #define REVISION 20
  16. #define PATCHLEVEL 1
  17. #define VERSION "2.0.1"
  18. #define REVDATE "Sept 18th 1993"
  19.  
  20. /* Copyright notice for binary executables--this notice only applies to
  21.  * those (zip, zipcloak, zipsplit, and zipnote), not to this file
  22.  * (revision.h).
  23.  */
  24.  
  25. #ifndef NOCPYRT
  26. char *copyright[] = {
  27. #ifdef VMS
  28. "Copyright (C) 1990-1993 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  29. "and Igor Mandrichenko. Type '%s \"-L\"' for software license.",
  30. #else
  31. # ifdef AMIGA
  32. "Copyright (C) 1990-1993 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  33. "John Bush and Paul Kienitz. Type '%s -L' for the software License.",
  34. # else
  35. "Copyright (C) 1990-1993 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  36. "and Kai Uwe Rommel. Type '%s -L' for the software License.",
  37. # endif /* ?AMIGA */
  38. #endif /* ?VMS */
  39. };
  40. char *disclaimer[] = {
  41. "",
  42. "Permission is granted to any individual or institution to use, copy, or",
  43. "redistribute this executable so long as it is not modified and that it is",
  44. "not sold for profit.",
  45. "",
  46. "LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE",
  47. "PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR",
  48. "IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES",
  49. "RESULTING FROM THE USE OF THIS SOFTWARE."
  50. };
  51. #endif /* !NOCPYRT */
  52.