3047
|
1 /* |
|
2 |
5643
|
3 Copyright (C) 1992, 1993, 1994, 1994, 1996, 1997, 1998, 1999, 2000, |
|
4 2001, 2002, 2003, 2004, 2005, 2006 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 |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
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 |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
5307
|
20 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
21 02110-1301, USA. |
3047
|
22 |
|
23 */ |
|
24 |
|
25 #if !defined (octave_version_h) |
|
26 #define octave_version_h 1 |
|
27 |
5853
|
28 #define OCTAVE_VERSION "2.9.6+" |
3047
|
29 |
5850
|
30 #define OCTAVE_API_VERSION "api-v19" |
4448
|
31 |
5850
|
32 #define OCTAVE_RELEASE_DATE "2006-06-09" |
5654
|
33 |
3047
|
34 #define OCTAVE_COPYRIGHT \ |
5643
|
35 "Copyright (C) 2006 John W. Eaton." |
3047
|
36 |
|
37 #define OCTAVE_NAME_AND_VERSION \ |
3584
|
38 "GNU Octave, version " OCTAVE_VERSION " (" OCTAVE_CANONICAL_HOST_TYPE ")" |
3047
|
39 |
3922
|
40 #define OCTAVE_COPYING_STATEMENT \ |
|
41 "This is free software; see the source code for copying conditions." |
|
42 |
|
43 #define OCTAVE_WARRANTY_STATEMENT \ |
|
44 "There is ABSOLUTELY NO WARRANTY; not even for MERCHANTIBILITY or\n\ |
|
45 FITNESS FOR A PARTICULAR PURPOSE." |
|
46 |
4829
|
47 #define OCTAVE_WWW_STATEMENT \ |
|
48 "Additional information about Octave is available at http://www.octave.org." |
|
49 |
4115
|
50 #define OCTAVE_CONTRIB_STATEMENT \ |
4134
|
51 "Please contribute if you find this software useful.\n\ |
|
52 For more information, visit http://www.octave.org/help-wanted.html" |
4115
|
53 |
3922
|
54 #define OCTAVE_BUGS_STATEMENT \ |
4862
|
55 "Report bugs to <bug@octave.org> (but first, please read\n\ |
4626
|
56 http://www.octave.org/bugs.html to learn how to write a helpful report)." |
3922
|
57 |
3047
|
58 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \ |
3922
|
59 OCTAVE_NAME_AND_VERSION ".\n" \ |
|
60 OCTAVE_COPYRIGHT |
|
61 |
|
62 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \ |
|
63 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n" \ |
|
64 OCTAVE_COPYING_STATEMENT "\n" \ |
|
65 OCTAVE_WARRANTY_STATEMENT |
|
66 |
|
67 #define X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS(ARG) \ |
|
68 OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \ |
|
69 ARG \ |
4829
|
70 OCTAVE_WWW_STATEMENT "\n\n" \ |
|
71 OCTAVE_CONTRIB_STATEMENT "\n\n" \ |
3922
|
72 OCTAVE_BUGS_STATEMENT |
|
73 |
|
74 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \ |
4115
|
75 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS ("\n\n") |
3047
|
76 |
|
77 #define OCTAVE_STARTUP_MESSAGE \ |
3922
|
78 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \ |
4829
|
79 (" For details, type `warranty'.\n\n") |
3047
|
80 |
|
81 #endif |
|
82 |
|
83 /* |
|
84 ;;; Local Variables: *** |
|
85 ;;; mode: C++ *** |
|
86 ;;; End: *** |
|
87 */ |