home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip22.zip / revision.h < prev    next >
C/C++ Source or Header  |  1997-11-03  |  4KB  |  128 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1997 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. /* For api version checking */
  19. #define Z_MAJORVER   2
  20. #define Z_MINORVER   2
  21. #define Z_PATCHLEVEL 0
  22. #define Z_BETALEVEL ""
  23.  
  24. #define VERSION "2.2"
  25. #define REVDATE "November 3rd 1997"
  26.  
  27. #define DW_MAJORVER    Z_MAJORVER
  28. #define DW_MINORVER    Z_MINORVER
  29. #define DW_PATCHLEVEL  Z_PATCHLEVEL
  30.  
  31. #ifndef WINDLL
  32. /* Copyright notice for binary executables--this notice only applies to
  33.  * those (zip, zipcloak, zipsplit, and zipnote), not to this file
  34.  * (revision.h).
  35.  */
  36.  
  37. #ifdef NOCPYRT                       /* copyright[] gets defined only once ! */
  38. extern ZCONST char *copyright[3];    /* keep array sizes in sync with number */
  39. extern ZCONST char *disclaimer[9];   /*  of text line in definition below !! */
  40. extern ZCONST char *versinfolines[7];
  41.  
  42. #else /* !NOCPYRT */
  43.  
  44. ZCONST char *copyright[] = {
  45.  
  46. #ifdef TANDEM
  47. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  48. "Onno van der Linden, and Dave Smith.",
  49. "Type '%s \"-L\"' for software license."
  50. #endif
  51.  
  52. #ifdef VMS
  53. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  54. "Onno van der Linden, Christian Spieler and Igor Mandrichenko.",
  55. "Type '%s \"-L\"' for software license."
  56. #endif
  57.  
  58. #ifdef AMIGA
  59. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  60. "Onno van der Linden, John Bush and Paul Kienitz.",
  61. "Type '%s -L' for the software License."
  62. #  ifdef AZTEC_C
  63.      ,        /* extremely lame compiler bug workaround */
  64. #  endif
  65. #endif
  66.  
  67. #ifdef __BEOS__
  68. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  69. "Onno van der Linden, and Chris Herborth.",
  70. "Type '%s -L' for the software License."
  71. #endif
  72.  
  73. #ifdef QDOS
  74. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  75. "Onno van der Linden and Jonathan Hudson.",
  76. "Type '%s -L' for the software License."
  77. #endif
  78.  
  79. #if defined(__arm) || defined(__riscos) || defined(RISCOS)
  80. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  81. "Onno van der Linden, Karl Davis and Sergio Monesi.",
  82. "Type '%s \"-L\"' for software Licence."
  83. #endif
  84.  
  85. #ifdef DOS
  86. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  87. "Onno van der Linden, Christian Spieler and Kai Uwe Rommel.",
  88. "Type '%s -L' for the software License."
  89. #endif
  90.  
  91. #ifdef CMS_MVS
  92. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  93. "Onno van der Linden, George Petrov and Kai Uwe Rommel.",
  94. "Type '%s -L' for the software License."
  95. #endif
  96.  
  97. #if defined(OS2) || defined(WIN32) || defined(UNIX)
  98. "Copyright (C) 1990-1997 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  99. "Onno van der Linden and Kai Uwe Rommel.",
  100. "Type '%s -L' for the software License."
  101. #endif
  102. };
  103.  
  104. ZCONST char *versinfolines[] = {
  105. "This is %s %s (%s), by Info-ZIP.",
  106. "Currently maintained by Onno van der Linden. Please send bug reports to",
  107. "the authors at Zip-Bugs@lists.wku.edu; see README for details.",
  108. "",
  109. "Latest sources and executables are at ftp://ftp.cdrom.com/pub/infozip, as of",
  110. "above date; see http://www.cdrom.com/pub/infozip/Zip.html for other sites",
  111. ""
  112. };
  113.  
  114. ZCONST char *disclaimer[] = {
  115. "",
  116. "Permission is granted to any individual or institution to use, copy, or",
  117. "redistribute this executable so long as it is not modified and that it is",
  118. "not sold for profit.",
  119. "",
  120. "LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE",
  121. "PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR",
  122. "IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES",
  123. "RESULTING FROM THE USE OF THIS SOFTWARE."
  124. };
  125. #endif /* !NOCPYRT */
  126. #endif /* !WINDLL */
  127. #endif /* !__revision_h */
  128.