home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / TeX / tex / banner.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-25  |  2.9 KB  |  118 lines

  1. /*
  2.  *  banner
  3.  */
  4.  
  5. #include "config.h"
  6.  
  7. /* Original-Banner: */
  8.  
  9. #ifdef BIG
  10. # define STD_BANNER    "This is TeX, C Version 3.1415_big"
  11. #else
  12. # define STD_BANNER    "This is TeX, C Version 3.1415"
  13. #endif
  14.  
  15.  
  16. #if 0    /* Pre-Release? */
  17.  
  18. #ifdef AMIGA
  19. #  define BANNER \
  20. "This is a Pre-Release 1.4b of PasTeX (made " __DATE__ " [br]/[hes])\n"
  21. #else
  22. #  define BANNER \
  23. "This is Pre-Release 1.5a of br-TeX (made " __DATE__ " [br])\n"
  24. #endif
  25.  
  26. # ifdef AMIGA
  27.  
  28. #ifdef MC020
  29.  
  30. # ifdef BIG
  31. #  ifdef INITEX
  32.     static const char amiver[] = "$VER: initex 3.1415 (12.11.94) Part of PasTeX 1.4b (big/020) *BETA-VERSION*";
  33. #  else
  34.     static const char amiver[] = "$VER: virtex 3.1415 (12.11.94) Part of PasTeX 1.4b (big/020) *BETA-VERSION*";
  35. #  endif
  36. # else
  37. #  ifdef INITEX
  38.     static const char amiver[] = "$VER: initex 3.1415 (12.11.94) Part of PasTeX 1.4b (020) *BETA-VERSION*";
  39. #  else
  40.     static const char amiver[] = "$VER: virtex 3.1415 (12.11.94) Part of PasTeX 1.4b (020) *BETA-VERSION*";
  41. #  endif
  42. # endif
  43.  
  44. #else
  45.  
  46. # ifdef BIG
  47. #  ifdef INITEX
  48.     static const char amiver[] = "$VER: initex 3.1415 (12.11.94) Part of PasTeX 1.4b (big) *BETA-VERSION*";
  49. #  else
  50.     static const char amiver[] = "$VER: virtex 3.1415 (12.11.94) Part of PasTeX 1.4b (big) *BETA-VERSION*";
  51. #  endif
  52. # else
  53. #  ifdef INITEX
  54.     static const char amiver[] = "$VER: initex 3.1415 (12.11.94) Part of PasTeX 1.4b *BETA-VERSION*";
  55. #  else
  56.     static const char amiver[] = "$VER: virtex 3.1415 (12.11.94) Part of PasTeX 1.4b *BETA-VERSION*";
  57. #  endif
  58. # endif
  59.  
  60. #endif
  61.  
  62. # endif
  63.  
  64.  
  65.  
  66. #else
  67.  
  68. #ifdef AMIGA
  69. #  define BANNER \
  70. "This is a PD-Version of PasTeX (made " __DATE__ " [br]/[hes])\n"
  71. #else
  72. #  define BANNER \
  73. "This is a PD-Version of br-TeX (made " __DATE__ " [br])\n"
  74. #endif
  75.  
  76. # ifdef AMIGA
  77.  
  78. #  ifdef MC020
  79.  
  80. #   ifdef BIG
  81. #    ifdef INITEX
  82.       static const char amiver[] = "$VER: initex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: big+020";
  83. #    else
  84.       static const char amiver[] = "$VER: virtex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: big+020";
  85. #    endif
  86. #   else
  87. #    ifdef INITEX
  88.       static const char amiver[] = "$VER: initex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: small+020";
  89. #    else
  90.       static const char amiver[] = "$VER: virtex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: small+020";
  91. #    endif
  92. #   endif
  93.  
  94. #  else
  95.  
  96. #   ifdef BIG
  97. #    ifdef INITEX
  98.       static const char amiver[] = "$VER: initex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: big+000";
  99. #    else
  100.       static const char amiver[] = "$VER: virtex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: big+000";
  101. #    endif
  102. #   else
  103. #    ifdef INITEX
  104.       static const char amiver[] = "$VER: initex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: small+000";
  105. #    else
  106.       static const char amiver[] = "$VER: virtex 3.1415 "__AMIGADATE__"Part of PasTeX 1.4. Version: small+000";
  107. #    endif
  108. #   endif
  109.  
  110. #  endif
  111.  
  112. #endif
  113.  
  114. char banner[] = BANNER STD_BANNER ;
  115.  
  116.  
  117. /* -- end -- */
  118.