home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip21.zip / revision.h < prev    next >
C/C++ Source or Header  |  1996-04-27  |  3KB  |  94 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly,
  4.  Kai Uwe Rommel, Onno van der Linden 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. #ifndef __revision_h
  16. #define __revision_h 1
  17.  
  18. #define REVISION 21
  19. #define PATCHLEVEL 0
  20. #define VERSION "2.1"
  21. #define REVDATE "April 27th 1996"
  22.  
  23. /* Copyright notice for binary executables--this notice only applies to
  24.  * those (zip, zipcloak, zipsplit, and zipnote), not to this file
  25.  * (revision.h).
  26.  */
  27.  
  28. #ifdef NOCPYRT                       /* copyright[] gets defined only once ! */
  29. extern const char *copyright[2];     /* keep array sizes in sync with number */
  30. extern const char *disclaimer[9];    /*  of text line in definition below !! */
  31. extern const char *versinfolines[4];
  32.  
  33. #else /* !NOCPYRT */
  34.  
  35. const char *copyright[] = {
  36.  
  37. #ifdef VMS
  38. "Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  39. "Onno van der Linden, Christian Spieler and Igor Mandrichenko.",
  40. "Type '%s \"-L\"' for software license."
  41. #endif
  42.  
  43. #ifdef AMIGA
  44. "Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  45. "Onno van der Linden, John Bush and Paul Kienitz.",
  46. "Type '%s -L' for the software License."
  47. #endif
  48.  
  49. #if defined(__arm) || defined(RISCOS)
  50. "Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  51. "Onno van der Linden, Karl Davis and Sergio Monesi.",
  52. "Type '%s \"-L\"' for software Licence."
  53. #endif
  54.  
  55. #ifdef DOS
  56. "Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  57. "Onno van der Linden, Christian Spieler and Kai Uwe Rommel."
  58. #endif
  59.  
  60. #ifdef CMS_MVS
  61. "Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  62. "Onno van der Linden, George Petrov and Kai Uwe Rommel."
  63. #endif
  64.  
  65. #if defined(OS2) || defined(WIN32) || defined(UNIX)
  66. "Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  67. "Onno van der Linden and Kai Uwe Rommel. Type '%s -L' for the software License."
  68. #endif
  69. };
  70.  
  71. const char *versinfolines[] = {
  72. "This is %s %s (%s), by Info-ZIP.",
  73. "Currently maintained by Onno van der Linden. Please send bug reports to",
  74. "the authors at Zip-Bugs@wkuvx1.wku.edu; see README for details.",
  75. "",
  76. "Latest sources and executables are always in ftp.uu.net:/pub/archiving/zip, at",
  77. "least as of date of this release; See \"Where\" for other ftp and non-ftp sites.",
  78. ""
  79. };
  80.  
  81. const char *disclaimer[] = {
  82. "",
  83. "Permission is granted to any individual or institution to use, copy, or",
  84. "redistribute this executable so long as it is not modified and that it is",
  85. "not sold for profit.",
  86. "",
  87. "LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE",
  88. "PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR",
  89. "IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES",
  90. "RESULTING FROM THE USE OF THIS SOFTWARE."
  91. };
  92. #endif /* !NOCPYRT */
  93. #endif /* !__revision_h */
  94.