annotate src/version.h @ 3111:fe6f9bd9d0e6

[project @ 1997-11-26 07:52:06 by jwe]
author jwe
date Wed, 26 Nov 1997 07:53:04 +0000
parents a8dcfbf87ea3
children 292ff0bf484b
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
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
3 Copyright (C) 1996, 1997 John W. Eaton
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
3111
fe6f9bd9d0e6 [project @ 1997-11-26 07:52:06 by jwe]
jwe
parents: 3107
diff changeset
26 #define OCTAVE_VERSION "2.1.4"
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 \
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
29 "Copyright (C) 1996, 1997 John W. Eaton."
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 \
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
32 "Octave, version " OCTAVE_VERSION " (" TARGET_HOST_TYPE ")"
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\
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
40 For details, type `warranty'."
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
41
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
42 #endif
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
43
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
44 /*
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
45 ;;; Local Variables: ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
46 ;;; mode: C++ ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
47 ;;; End: ***
540812544d0d [project @ 1997-06-06 22:17:29 by jwe]
jwe
parents:
diff changeset
48 */