1/****************************************************************************
2 * Copyright (C) 2011 by Matteo Franchin                                    *
3 *                                                                          *
4 * This file is part of Box.                                                *
5 *                                                                          *
6 *   Box is free software: you can redistribute it and/or modify it         *
7 *   under the terms of the GNU Lesser General Public License as published  *
8 *   by the Free Software Foundation, either version 3 of the License, or   *
9 *   (at your option) any later version.                                    *
10 *                                                                          *
11 *   Box is distributed in the hope that it will be useful,                 *
12 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
13 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
14 *   GNU Lesser General Public License for more details.                    *
15 *                                                                          *
16 *   You should have received a copy of the GNU Lesser General Public       *
17 *   License along with Box.  If not, see <http://www.gnu.org/licenses/>.   *
18 ****************************************************************************/
19
20/* This file contains part of the information which Box needs in order to work
21 * properly. It contains, in particular, all the details about the version
22 * of the program.
23 */
24
25#define BOX_VER_MAJOR @BOX_VER_MAJOR@
26#define BOX_VER_MINOR @BOX_VER_MINOR@
27#define BOX_VER_MAINT @BOX_VER_MAINT@
28
29#define BOX_VERSTR_MAJOR "@BOX_VER_MAJOR@"
30#define BOX_VERSTR_MINOR "@BOX_VER_MINOR@"
31#define BOX_VERSTR_MAINT "@BOX_VER_MAINT@"
32#define BOX_VERSTR_ROUGH "@BOX_VER_MAJOR@.@BOX_VER_MINOR@"
33#define BOX_VERSTR "@BOX_VER_MAJOR@.@BOX_VER_MINOR@.@BOX_VER_MAINT@"
34