home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21ep.zip / octave / SOURCE.ZIP / src / version.h < prev   
Text File  |  1999-05-30  |  3KB  |  89 lines

  1. /*
  2.  
  3. Copyright (C) 1996, 1997, 1998 John W. Eaton
  4.  
  5. This file is part of Octave.
  6.  
  7. Octave is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2, or (at your option) any
  10. later version.
  11.  
  12. Octave is distributed in the hope that it will be useful, but WITHOUT
  13. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Octave; see the file COPYING.  If not, write to the Free
  19. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. */
  22.  
  23. #if !defined (octave_version_h)
  24. #define octave_version_h 1
  25.  
  26. /* Modified by Klaus Gebhardt, 1996 - 1998 */
  27.  
  28. #if defined (__EMX__) && defined (OS2)
  29. #define OCTAVE_VERSION "2.1.14"
  30. #define OCTAVE_OS2_PATCHLEVEL "2.1.14-b02"
  31.  
  32. #define OCTAVE_COPYRIGHT \
  33. "Copyright (C) 1996, 1997, 1998 John W. Eaton.\n\
  34. OS/2-Port by Klaus Gebhardt, 1996 - 1999."
  35.  
  36. #define OCTAVE_NAME_AND_VERSION \
  37. "Octave " OCTAVE_VERSION " for OS/2 2.x, Warp 3 and Warp 4.\n(Patchlevel " \
  38. OCTAVE_OS2_PATCHLEVEL ")"
  39.  
  40. #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
  41.   OCTAVE_NAME_AND_VERSION ".\n" OCTAVE_COPYRIGHT "\n\
  42. This is free software with ABSOLUTELY NO WARRANTY."
  43.  
  44. #define OCTAVE_STARTUP_MESSAGE \
  45.   OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\
  46. For details, type `warranty'.\n\
  47. \n\
  48. *** This is a development version of Octave.  Development releases\n\
  49. *** are provided for people who want to help test, debug, and improve\n\
  50. *** Octave.\n\
  51. ***\n\
  52. *** If you want a stable, well-tested version of Octave, you should be\n\
  53. *** using one of the stable releases (when this development release\n\
  54. *** was made, the latest stable version was 2.0.13)."
  55.  
  56. #else
  57. #define OCTAVE_VERSION "2.1.14"
  58.  
  59. #define OCTAVE_COPYRIGHT \
  60.   "Copyright (C) 1996, 1997, 1998 John W. Eaton."
  61.  
  62. #define OCTAVE_NAME_AND_VERSION \
  63.   "GNU Octave, version " OCTAVE_VERSION " (" CANONICAL_HOST_TYPE ")"
  64.  
  65. #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
  66.   OCTAVE_NAME_AND_VERSION ".\n" OCTAVE_COPYRIGHT "\n\
  67. This is free software with ABSOLUTELY NO WARRANTY."
  68.  
  69. #define OCTAVE_STARTUP_MESSAGE \
  70.   OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\
  71. For details, type `warranty'.\n\
  72. \n\
  73. *** This is a development version of Octave.  Development releases\n\
  74. *** are provided for people who want to help test, debug, and improve\n\
  75. *** Octave.\n\
  76. ***\n\
  77. *** If you want a stable, well-tested version of Octave, you should be\n\
  78. *** using one of the stable releases (when this development release\n\
  79. *** was made, the latest stable version was 2.0.13)."
  80.  
  81. #endif
  82. #endif
  83.  
  84. /*
  85. ;;; Local Variables: ***
  86. ;;; mode: C++ ***
  87. ;;; End: ***
  88. */
  89.