LibSakura  5.2
config.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (C) 2013-2022
4  * Inter-University Research Institute Corporation, National Institutes of Natural Sciences
5  * 2-21-1, Osawa, Mitaka, Tokyo, 181-8588, Japan.
6  *
7  * This file is part of Sakura.
8  *
9  * Sakura is free software: you can redistribute it and/or modify it under
10  * the terms of the GNU Lesser General Public License as published by the
11  * Free Software Foundation, either version 3 of the License, or (at your
12  * option) any later version.
13  *
14  * Sakura is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17  * License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with Sakura. If not, see <http://www.gnu.org/licenses/>.
21  *
22  */
23 #ifndef LIBSAKURA_LIBSAKURA_CONFIG_H_
24 #define LIBSAKURA_LIBSAKURA_CONFIG_H_
25 
26 #define LIBSAKURA_VERSION_MAJOR 5
27 #define LIBSAKURA_VERSION_MINOR 2
28 #define LIBSAKURA_VERSION_STRING "5.2"
29 #ifndef LIBSAKURA_PREFIX
30 # define LIBSAKURA_PREFIX sakura
31 # define LIBSAKURA_PREFIX_STRING "sakura"
32 #endif
33 #define LIBSAKURA_CONCAT(x, y) x ## _ ## y
34 #define LIBSAKURA_SYMBOL(x) LIBSAKURA_CONCAT(sakura, x)
35 
36 #define LIBSAKURA_HAS_LOG4CXX 0
37 
38 #endif /* LIBSAKURA_LIBSAKURA_CONFIG_H_ */