1/*
2 * pxversion.h : compile-time version informations for the pslib.
3 *
4 * See Copyright for the status of this software.
5 *
6 * Uwe@steinmann.cx
7 */
8
9#ifndef __PXLIB_VERSION_H__
10#define __PXLIB_VERSION_H__
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16/*
17 * use those to be sure nothing nasty will happen if
18 * your library and includes mismatch
19 */
20#define PXLIB_DOTTED_VERSION "@VERSION@"
21#define PXLIB_MAJOR_VERSION @PXLIB_MAJOR_VERSION@
22#define PXLIB_MINOR_VERSION @PXLIB_MINOR_VERSION@
23#define PXLIB_MICRO_VERSION @PXLIB_MICRO_VERSION@
24
25/*
26 * Whether Debugging module is configured in
27 */
28#if @WITH_DEBUG@
29#define PXLIB_DEBUG_ENABLED
30#else
31#define PXLIB_DEBUG_DISABLED
32#endif
33
34#ifdef __cplusplus
35}
36#endif /* __cplusplus */
37#endif
38
39
40