comparison src/version.h @ 6469:a848b846cb3a ss-2-9-10

[project @ 2007-03-27 18:42:11 by jwe]
author jwe
date Tue, 27 Mar 2007 18:42:11 +0000
parents f1676652d808
children 23e8f1cf79ab
comparison
equal deleted inserted replaced
6468:d19a0250e680 6469:a848b846cb3a
1 /* 1 /*
2 2
3 Copyright (C) 1992, 1993, 1994, 1994, 1996, 1997, 1998, 1999, 2000, 3 Copyright (C) 1992, 1993, 1994, 1994, 1996, 1997, 1998, 1999, 2000,
4 2001, 2002, 2003, 2004, 2005, 2006 John W. Eaton 4 2001, 2002, 2003, 2004, 2005, 2006, 2007 John W. Eaton
5 5
6 This file is part of Octave. 6 This file is part of Octave.
7 7
8 Octave is free software; you can redistribute it and/or modify it 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 9 under the terms of the GNU General Public License as published by the
23 */ 23 */
24 24
25 #if !defined (octave_version_h) 25 #if !defined (octave_version_h)
26 #define octave_version_h 1 26 #define octave_version_h 1
27 27
28 #define OCTAVE_VERSION "2.9.9+" 28 #define OCTAVE_VERSION "2.9.10"
29 29
30 #define OCTAVE_API_VERSION "api-v22" 30 #define OCTAVE_API_VERSION "api-v23"
31 31
32 #define OCTAVE_RELEASE_DATE "2006-10-02" 32 #define OCTAVE_RELEASE_DATE "2007-03-27"
33 33
34 #define OCTAVE_COPYRIGHT "Copyright (C) 2006 John W. Eaton." 34 #define OCTAVE_COPYRIGHT "Copyright (C) 2007 John W. Eaton and others."
35 35
36 // This is the first line printed by --version. The GNU coding 36 // This is the first line printed by --version. The GNU coding
37 // standards say that the version number should follow the last space 37 // standards say that the version number should follow the last space
38 // on the line. 38 // on the line.
39 39
43 "Octave was configured for \"" OCTAVE_CANONICAL_HOST_TYPE "\"." 43 "Octave was configured for \"" OCTAVE_CANONICAL_HOST_TYPE "\"."
44 44
45 #define OCTAVE_COPYING_STATEMENT \ 45 #define OCTAVE_COPYING_STATEMENT \
46 "This is free software; see the source code for copying conditions." 46 "This is free software; see the source code for copying conditions."
47 47
48 #define X_OCTAVE_WARRANTY_STATEMENT(ARG) \
49 "There is ABSOLUTELY NO WARRANTY; not even for MERCHANTIBILITY or\n\
50 FITNESS FOR A PARTICULAR PURPOSE." ARG
51
48 #define OCTAVE_WARRANTY_STATEMENT \ 52 #define OCTAVE_WARRANTY_STATEMENT \
49 "There is ABSOLUTELY NO WARRANTY; not even for MERCHANTIBILITY or\n\ 53 X_OCTAVE_WARRANTY_STATEMENT ("")
50 FITNESS FOR A PARTICULAR PURPOSE."
51 54
52 #define OCTAVE_WWW_STATEMENT \ 55 #define OCTAVE_WWW_STATEMENT \
53 "Additional information about Octave is available at http://www.octave.org." 56 "Additional information about Octave is available at http://www.octave.org."
54 57
55 #define OCTAVE_CONTRIB_STATEMENT \ 58 #define OCTAVE_CONTRIB_STATEMENT \
63 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \ 66 #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
64 OCTAVE_NAME_AND_VERSION "\n" \ 67 OCTAVE_NAME_AND_VERSION "\n" \
65 OCTAVE_COPYRIGHT 68 OCTAVE_COPYRIGHT
66 69
67 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \ 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) \
68 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n" \ 74 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n" \
69 OCTAVE_COPYING_STATEMENT "\n" \ 75 OCTAVE_COPYING_STATEMENT "\n" \
70 OCTAVE_WARRANTY_STATEMENT "\n\n" \ 76 X_OCTAVE_WARRANTY_STATEMENT (ARG) "\n\n" \
71 OCTAVE_CONFIG_STATEMENT 77 OCTAVE_CONFIG_STATEMENT
72 78
73 #define X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS(ARG) \ 79 #define X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS(ARG) \
74 OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY \ 80 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_AND_WARRANTY(ARG) "\n\n" \
75 ARG \
76 OCTAVE_WWW_STATEMENT "\n\n" \ 81 OCTAVE_WWW_STATEMENT "\n\n" \
77 OCTAVE_CONTRIB_STATEMENT "\n\n" \ 82 OCTAVE_CONTRIB_STATEMENT "\n\n" \
78 OCTAVE_BUGS_STATEMENT 83 OCTAVE_BUGS_STATEMENT
79 84
80 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \ 85 #define OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \
81 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS ("\n\n") 86 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS ("")
82 87
83 #define OCTAVE_STARTUP_MESSAGE \ 88 #define OCTAVE_STARTUP_MESSAGE \
84 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \ 89 X_OCTAVE_NAME_VERSION_COPYRIGHT_COPYING_WARRANTY_AND_BUGS \
85 (" For details, type `warranty'.\n\ 90 (" For details, type `warranty'.") "\n\n" \
86 For information about changes from previous versions, type `news'.\n\n") 91 "For information about changes from previous versions, type `news'."
87 92
88 #endif 93 #endif
89 94
90 /* 95 /*
91 ;;; Local Variables: *** 96 ;;; Local Variables: ***