3047
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, |
11761
|
4 2002, 2003, 2004, 2005, 2006, 2007, 2008 John W. Eaton |
3047
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
7016
|
10 Free Software Foundation; either version 3 of the License, or (at your |
|
11 option) any later version. |
3047
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
7016
|
19 along with Octave; see the file COPYING. If not, see |
|
20 <http://www.gnu.org/licenses/>. |
3047
|
21 |
|
22 */ |
|
23 |
|
24 #if !defined (octave_version_h) |
|
25 #define octave_version_h 1 |
|
26 |
11861
|
27 #define OCTAVE_VERSION "3.0.3" |
3047
|
28 |
7334
|
29 #define OCTAVE_API_VERSION "api-v32" |
4448
|
30 |
11861
|
31 #define OCTAVE_RELEASE_DATE "2008-09-24" |
5654
|
32 |
11761
|
33 #define OCTAVE_COPYRIGHT "Copyright (C) 2008 John W. Eaton and others." |
3047
|
34 |
6230
|
35 // This is the first line printed by --version. The GNU coding |
|
36 // standards say that the version number should follow the last space |
|
37 // on the line. |
|
38 |
|
39 #define OCTAVE_NAME_AND_VERSION "GNU Octave, version " OCTAVE_VERSION |
|
40 |
|
41 #define OCTAVE_CONFIG_STATEMENT \ |
|
42 "Octave was configured for \"" OCTAVE_CANONICAL_HOST_TYPE "\"." |
3047
|
43 |
3922
|
44 #define OCTAVE_COPYING_STATEMENT \ |
|
45 "This is free software; see the source code for copying conditions." |
|
46 |
6469
|
47 #define X_OCTAVE_WARRANTY_STATEMENT(ARG) \ |
3922
|
48 "There is ABSOLUTELY NO WARRANTY; not even for MERCHANTIBILITY or\n\ |
6469
|
49 FITNESS FOR A PARTICULAR PURPOSE." ARG |
|
50 |
|
51 #define OCTAVE_WARRANTY_STATEMENT \ |
|
52 X_OCTAVE_WARRANTY_STATEMENT ("") |
3922
|
53 |
4829
|
54 #define OCTAVE_WWW_STATEMENT \ |
|
55 "Additional information about Octave is available at http://www.octave.org." |
|
56 |
4115
|
57 #define OCTAVE_CONTRIB_STATEMENT \ |
4134
|
58 "Please contribute if you find this software useful.\n\ |
|
59 For more information, visit http://www.octave.org/help-wanted.html" |
4115
|
60 |
3922
|
61 #define OCTAVE_BUGS_STATEMENT \ |
4862
|
62 "Report bugs to <bug@octave.org> (but first, please read\n\ |
4626
|
63 http://www.octave.org/bugs.html to learn how to write a helpful report)." |
3922
|
64 |
3047
|
65 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \ |
6230
|
66 OCTAVE_NAME_AND_VERSION "\n" \ |
3922
|
67 OCTAVE_COPYRIGHT |
|
68 |
|
69 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \ |
6469
|
70 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY("") \ |
|
71 |
|
72 #define X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY(ARG) \ |
3922
|
73 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n" \ |
|
74 OCTAVE_COPYING_STATEMENT "\n" \ |
6469
|
75 X_OCTAVE_WARRANTY_STATEMENT (ARG) "\n\n" \ |
6230
|
76 OCTAVE_CONFIG_STATEMENT |
3922
|
77 |
|
78 #define X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS(ARG) \ |
6469
|
79 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY(ARG) "\n\n" \ |
4829
|
80 OCTAVE_WWW_STATEMENT "\n\n" \ |
|
81 OCTAVE_CONTRIB_STATEMENT "\n\n" \ |
3922
|
82 OCTAVE_BUGS_STATEMENT |
|
83 |
|
84 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \ |
6469
|
85 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS ("") |
3047
|
86 |
|
87 #define OCTAVE_STARTUP_MESSAGE \ |
3922
|
88 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \ |
6469
|
89 (" For details, type `warranty'.") "\n\n" \ |
|
90 "For information about changes from previous versions, type `news'." |
3047
|
91 |
|
92 #endif |
|
93 |
|
94 /* |
|
95 ;;; Local Variables: *** |
|
96 ;;; mode: C++ *** |
|
97 ;;; End: *** |
|
98 */ |