3047
|
1 /* |
|
2 |
3141
|
3 Copyright (C) 1996, 1997, 1998 John W. Eaton |
3047
|
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 |
3417
|
26 #define OCTAVE_VERSION "2.1.24" |
3047
|
27 |
|
28 #define OCTAVE_COPYRIGHT \ |
3417
|
29 "Copyright (C) 1996, 1997, 1998, 1999, 2000 John W. Eaton." |
3047
|
30 |
|
31 #define OCTAVE_NAME_AND_VERSION \ |
3238
|
32 "GNU Octave, version " OCTAVE_VERSION " (" CANONICAL_HOST_TYPE ")" |
3047
|
33 |
|
34 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \ |
|
35 OCTAVE_NAME_AND_VERSION ".\n" OCTAVE_COPYRIGHT "\n\ |
|
36 This is free software with ABSOLUTELY NO WARRANTY." |
|
37 |
|
38 #define OCTAVE_STARTUP_MESSAGE \ |
|
39 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\ |
3219
|
40 For details, type `warranty'.\n\ |
|
41 \n\ |
|
42 *** This is a development version of Octave. Development releases\n\ |
|
43 *** are provided for people who want to help test, debug, and improve\n\ |
|
44 *** Octave.\n\ |
|
45 ***\n\ |
|
46 *** If you want a stable, well-tested version of Octave, you should be\n\ |
|
47 *** using one of the stable releases (when this development release\n\ |
3417
|
48 *** was made, the latest stable version was 2.0.15)." |
3047
|
49 |
|
50 #endif |
|
51 |
|
52 /* |
|
53 ;;; Local Variables: *** |
|
54 ;;; mode: C++ *** |
|
55 ;;; End: *** |
|
56 */ |