1 | /* |
2 | Copyright(C) 2011 Kouhei Sutou <kou@clear-code.com> |
3 | |
4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Lesser General Public |
6 | License as published by the Free Software Foundation; either |
7 | version 2.1 of the License, or (at your option) any later version. |
8 | |
9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Lesser General Public License for more details. |
13 | |
14 | You should have received a copy of the GNU Lesser General Public |
15 | License along with this library; if not, write to the Free Software |
16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
17 | */ |
18 | |
19 | #ifndef MRN_VERSION_H_ |
20 | #define MRN_VERSION_H_ |
21 | |
22 | /* Define mroonga version in string */ |
23 | #define MRN_VERSION "7.07" |
24 | |
25 | /* Define mroonga version in hex */ |
26 | #define MRN_VERSION_IN_HEX 0x0707 |
27 | |
28 | /* Define mroonga major version */ |
29 | #define MRN_VERSION_MAJOR 7 |
30 | |
31 | /* Define mroonga minor version */ |
32 | #define MRN_VERSION_MINOR 0 |
33 | |
34 | /* Define mroonga micro version */ |
35 | #define MRN_VERSION_MICRO 7 |
36 | |
37 | /* Define to the full name and version of this package. */ |
38 | #define MRN_PACKAGE_STRING "mroonga 7.07" |
39 | |
40 | #endif /* MRN_VERSION_H_ */ |
41 | |