comparison configure.ac @ 18549:43cc202335dc stable release-3-8-1

Version 3.8.1 released. * configure.ac (OCTAVE_VERSION): Now 3.8.1. (OCTAVE_MINOR_VERSION): Now 1. (OCTAVE_RELEASE_DATE): Set to 2014-03-06. Update copyright date for startup message.
author John W. Eaton <jwe@octave.org>
date Thu, 06 Mar 2014 14:40:35 -0500
parents dd669c2ae76c
children de76baa76aa1 492c56149535
comparison
equal deleted inserted replaced
18548:06970f4625b8 18549:43cc202335dc
1 dnl Process this file with autoconf to produce a configure script. 1 dnl Process this file with autoconf to produce a configure script.
2 dnl 2 dnl
3 dnl Copyright (C) 1993-2013 John W. Eaton 3 dnl Copyright (C) 1993-2014 John W. Eaton
4 ### 4 ###
5 ### This file is part of Octave. 5 ### This file is part of Octave.
6 ### 6 ###
7 ### Octave is free software; you can redistribute it and/or modify it 7 ### Octave is free software; you can redistribute it and/or modify it
8 ### under the terms of the GNU General Public License as published by the 8 ### under the terms of the GNU General Public License as published by the
17 ### You should have received a copy of the GNU General Public License 17 ### You should have received a copy of the GNU General Public License
18 ### along with Octave; see the file COPYING. If not, see 18 ### along with Octave; see the file COPYING. If not, see
19 ### <http://www.gnu.org/licenses/>. 19 ### <http://www.gnu.org/licenses/>.
20 20
21 AC_PREREQ([2.62]) 21 AC_PREREQ([2.62])
22 AC_INIT([GNU Octave], [3.8.1-rc4], [http://octave.org/bugs.html], [octave]) 22 AC_INIT([GNU Octave], [3.8.1], [http://octave.org/bugs.html], [octave])
23 23
24 dnl Note that the version number is duplicated here and in AC_INIT 24 dnl Note that the version number is duplicated here and in AC_INIT
25 dnl because AC_INIT requires it to be static, not computed from 25 dnl because AC_INIT requires it to be static, not computed from
26 dnl shell variables. 26 dnl shell variables.
27 OCTAVE_MAJOR_VERSION=3 27 OCTAVE_MAJOR_VERSION=3
28 OCTAVE_MINOR_VERSION=8 28 OCTAVE_MINOR_VERSION=8
29 OCTAVE_PATCH_VERSION=1-rc4 29 OCTAVE_PATCH_VERSION=1
30 30
31 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg 31 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg
32 OCTAVE_VERSION="$PACKAGE_VERSION" 32 OCTAVE_VERSION="$PACKAGE_VERSION"
33 33
34 OCTAVE_COPYRIGHT="Copyright (C) 2013 John W. Eaton and others." 34 OCTAVE_COPYRIGHT="Copyright (C) 2014 John W. Eaton and others."
35 35
36 OCTAVE_RELEASE_DATE="2014-02-26" 36 OCTAVE_RELEASE_DATE="2014-03-06"
37 37
38 ## The "API version" is used as a way of checking that interfaces in the 38 ## The "API version" is used as a way of checking that interfaces in the
39 ## liboctave and libinterp libraries haven't changed in a backwardly 39 ## liboctave and libinterp libraries haven't changed in a backwardly
40 ## incompatible way when loading .oct files. A better way to do that is 40 ## incompatible way when loading .oct files. A better way to do that is
41 ## with library versioning, but not all systems support that. 41 ## with library versioning, but not all systems support that.