1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
dnl Copyright (C) 2011-2017, 2021 D. V. Wiebe
dnl
dnl llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
dnl
dnl This file is part of the GetData project.
dnl
dnl GetData is free software; you can redistribute it and/or modify it under
dnl the terms of the GNU Lesser General Public License as published by the
dnl Free Software Foundation; either version 2.1 of the License, or (at your
dnl option) any later version.
dnl
dnl GetData is distributed in the hope that it will be useful, but WITHOUT
dnl ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dnl FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
dnl License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public License
dnl along with GetData; if not, write to the Free Software Foundation, Inc.,
dnl 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
m4_define(getdata_major, 0)
m4_define(getdata_minor, 11)
m4_define(getdata_revision, 0)
m4_define(getdata_extra, [])
m4_define(getdata_pkg_extra,[])
m4_define(getdata_version,
getdata_major.getdata_minor.getdata_revision[]getdata_extra)
m4_define(getdata_pkg_version,
getdata_version[]getdata_pkg_extra)
dnl libgetdata current interface version
m4_define(getdata_iface_version, 9)
dnl libgetdata current interface implementation revision
m4_define(getdata_impl_revision, 0)
dnl libgetdata interface age (current interface - oldest supported interface)
m4_define(getdata_iface_age, 1)
dnl The rest of these are all CURRENT:REVISION:AGE
dnl libgetdata++ interface version info
m4_define(getdataxx_version, 8:0:1)
dnl libfgetdata interface version info
m4_define(fgetdata_version, 7:0:1)
dnl libf95getdata interface version info
m4_define(f95getdata_version, 8:0:1)
dnl libgetdata-matlab interface version info
m4_define(matlabgetdata_version, 3:0:3)
|