annotate src/version.h @ 6230:06bee64edc08

[project @ 2007-01-08 16:59:35 by jwe]
author jwe
date Mon, 08 Jan 2007 16:59:35 +0000
parents b59139756862
children f1676652d808
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
1 /*
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
2
5643
f93e8a956c25 [project @ 2006-03-06 21:32:02 by jwe]
jwe
parents: 5536
diff changeset
3 Copyright (C) 1992, 1993, 1994, 1994, 1996, 1997, 1998, 1999, 2000,
f93e8a956c25 [project @ 2006-03-06 21:32:02 by jwe]
jwe
parents: 5536
diff changeset
4 2001, 2002, 2003, 2004, 2005, 2006 John W. Eaton
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
5
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
7
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
11 later version.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
12
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
16 for more details.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
17
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
19 along with Octave; see the file COPYING. If not, write to the Free
5307
4c8a2e4e0717 [project @ 2005-04-26 19:24:27 by jwe]
jwe
parents: 5291
diff changeset
20 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
4c8a2e4e0717 [project @ 2005-04-26 19:24:27 by jwe]
jwe
parents: 5291
diff changeset
21 02110-1301, USA.
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
22
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
23 */
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
24
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
25 #if !defined (octave_version_h)
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
26 #define octave_version_h 1
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
27
6038
b59139756862 [project @ 2006-10-04 21:10:20 by jwe]
jwe
parents: 6021
diff changeset
28 #define OCTAVE_VERSION "2.9.9+"
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
29
6010
5e4d1e774641 [project @ 2006-09-29 17:23:23 by jwe]
jwe
parents: 5973
diff changeset
30 #define OCTAVE_API_VERSION "api-v22"
4448
042cdbb7f317 [project @ 2003-07-08 19:14:55 by jwe]
jwe
parents: 4439
diff changeset
31
6021
60f9ced8ab53 [project @ 2006-10-02 20:02:20 by jwe]
jwe
parents: 6010
diff changeset
32 #define OCTAVE_RELEASE_DATE "2006-10-02"
5654
6aae52010e3b [project @ 2006-03-09 19:04:53 by jwe]
jwe
parents: 5643
diff changeset
33
6230
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
34 #define OCTAVE_COPYRIGHT "Copyright (C) 2006 John W. Eaton."
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
35
6230
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
36 // This is the first line printed by --version. The GNU coding
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
37 // standards say that the version number should follow the last space
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
38 // on the line.
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
39
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
40 #define OCTAVE_NAME_AND_VERSION "GNU Octave, version " OCTAVE_VERSION
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
41
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
42 #define OCTAVE_CONFIG_STATEMENT \
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
43 "Octave was configured for \"" OCTAVE_CANONICAL_HOST_TYPE "\"."
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
44
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
45 #define OCTAVE_COPYING_STATEMENT \
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
46 "This is free software; see the source code for copying conditions."
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
47
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
48 #define OCTAVE_WARRANTY_STATEMENT \
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
49 "There is ABSOLUTELY NO WARRANTY; not even for MERCHANTIBILITY or\n\
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
50 FITNESS FOR A PARTICULAR PURPOSE."
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
51
4829
71dade3c16b6 [project @ 2004-03-10 05:12:06 by jwe]
jwe
parents: 4822
diff changeset
52 #define OCTAVE_WWW_STATEMENT \
71dade3c16b6 [project @ 2004-03-10 05:12:06 by jwe]
jwe
parents: 4822
diff changeset
53 "Additional information about Octave is available at http://www.octave.org."
71dade3c16b6 [project @ 2004-03-10 05:12:06 by jwe]
jwe
parents: 4822
diff changeset
54
4115
fc2048d4cd21 [project @ 2002-10-22 21:28:42 by jwe]
jwe
parents: 3922
diff changeset
55 #define OCTAVE_CONTRIB_STATEMENT \
4134
76d25b5e6223 [project @ 2002-10-30 01:03:27 by jwe]
jwe
parents: 4115
diff changeset
56 "Please contribute if you find this software useful.\n\
76d25b5e6223 [project @ 2002-10-30 01:03:27 by jwe]
jwe
parents: 4115
diff changeset
57 For more information, visit http://www.octave.org/help-wanted.html"
4115
fc2048d4cd21 [project @ 2002-10-22 21:28:42 by jwe]
jwe
parents: 3922
diff changeset
58
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
59 #define OCTAVE_BUGS_STATEMENT \
4862
a0997c4d1d54 [project @ 2004-04-15 21:14:43 by jwe]
jwe
parents: 4839
diff changeset
60 "Report bugs to <bug@octave.org> (but first, please read\n\
4626
1ba089061bfe [project @ 2003-11-16 00:33:07 by jwe]
jwe
parents: 4614
diff changeset
61 http://www.octave.org/bugs.html to learn how to write a helpful report)."
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
62
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
63 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
6230
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
64 OCTAVE_NAME_AND_VERSION "\n" \
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
65 OCTAVE_COPYRIGHT
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
66
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
67 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
68 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n" \
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
69 OCTAVE_COPYING_STATEMENT "\n" \
6230
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
70 OCTAVE_WARRANTY_STATEMENT "\n\n" \
06bee64edc08 [project @ 2007-01-08 16:59:35 by jwe]
jwe
parents: 6038
diff changeset
71 OCTAVE_CONFIG_STATEMENT
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
72
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
73 #define X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS(ARG) \
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
74 OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
75 ARG \
4829
71dade3c16b6 [project @ 2004-03-10 05:12:06 by jwe]
jwe
parents: 4822
diff changeset
76 OCTAVE_WWW_STATEMENT "\n\n" \
71dade3c16b6 [project @ 2004-03-10 05:12:06 by jwe]
jwe
parents: 4822
diff changeset
77 OCTAVE_CONTRIB_STATEMENT "\n\n" \
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
78 OCTAVE_BUGS_STATEMENT
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
79
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
80 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \
4115
fc2048d4cd21 [project @ 2002-10-22 21:28:42 by jwe]
jwe
parents: 3922
diff changeset
81 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS ("\n\n")
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
82
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
83 #define OCTAVE_STARTUP_MESSAGE \
3922
38c61cbf086c [project @ 2002-05-01 06:48:35 by jwe]
jwe
parents: 3850
diff changeset
84 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \
4829
71dade3c16b6 [project @ 2004-03-10 05:12:06 by jwe]
jwe
parents: 4822
diff changeset
85 (" For details, type `warranty'.\n\n")
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
86
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
87 #endif
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
88
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
89 /*
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
90 ;;; Local Variables: ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
91 ;;; mode: C++ ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
92 ;;; End: ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
93 */