comparison src/version.h.in @ 9794:0d4613a736e9

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