annotate src/version.h @ 3850:eff5ec2965aa

[project @ 2001-11-02 05:13:50 by jwe]
author jwe
date Fri, 02 Nov 2001 05:13:50 +0000
parents 8cb594807664
children 38c61cbf086c
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
3141
292ff0bf484b [project @ 1998-02-03 08:11:07 by jwe]
jwe
parents: 3111
diff changeset
3 Copyright (C) 1996, 1997, 1998 John W. Eaton
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
4
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
6
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
7 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
8 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
9 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
10 later version.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
11
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
12 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
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
14 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
15 for more details.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
16
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
17 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
18 along with Octave; see the file COPYING. If not, write to the Free
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
20
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
21 */
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 #if !defined (octave_version_h)
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
24 #define octave_version_h 1
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
25
3850
eff5ec2965aa [project @ 2001-11-02 05:13:50 by jwe]
jwe
parents: 3816
diff changeset
26 #define OCTAVE_VERSION "2.1.35"
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
27
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
28 #define OCTAVE_COPYRIGHT \
3762
9e8d61bd1c55 [project @ 2001-01-05 16:41:58 by jwe]
jwe
parents: 3749
diff changeset
29 "Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 John W. Eaton."
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
30
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
31 #define OCTAVE_NAME_AND_VERSION \
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 3493
diff changeset
32 "GNU Octave, version " OCTAVE_VERSION " (" OCTAVE_CANONICAL_HOST_TYPE ")"
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
33
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
34 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
35 OCTAVE_NAME_AND_VERSION ".\n" OCTAVE_COPYRIGHT "\n\
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
36 This is free software with ABSOLUTELY NO WARRANTY."
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
37
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
38 #define OCTAVE_STARTUP_MESSAGE \
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
39 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\
3219
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
40 For details, type `warranty'.\n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
41 \n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
42 *** This is a development version of Octave. Development releases\n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
43 *** are provided for people who want to help test, debug, and improve\n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
44 *** Octave.\n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
45 ***\n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
46 *** If you want a stable, well-tested version of Octave, you should be\n\
30770ba4457a [project @ 1998-11-13 03:44:31 by jwe]
jwe
parents: 3209
diff changeset
47 *** using one of the stable releases (when this development release\n\
3588
48834d424048 [project @ 2000-02-08 08:50:03 by jwe]
jwe
parents: 3587
diff changeset
48 *** was made, the latest stable version was 2.0.16)."
3047
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
49
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
50 #endif
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
51
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
52 /*
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
53 ;;; Local Variables: ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
54 ;;; mode: C++ ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
55 ;;; End: ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
56 */