File: psversion.h.in

package info (click to toggle)
pslib 0.4.8-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,808 kB
  • sloc: ansic: 9,602; sh: 4,382; makefile: 246
file content (39 lines) | stat: -rw-r--r-- 735 bytes parent folder | download | duplicates (8)
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
/*
 * pslibversion.h : compile-time version informations for the pslib.
 *
 * See Copyright for the status of this software.
 *
 * Uwe@steinmann.cx
 */

#ifndef __PSLIB_VERSION_H__
#define __PSLIB_VERSION_H__

#ifdef __cplusplus
extern "C" {
#endif

/*
 * use those to be sure nothing nasty will happen if
 * your library and includes mismatch
 */
#define LIBPS_DOTTED_VERSION "@VERSION@"
#define LIBPS_MAJOR_VERSION @LIBPS_MAJOR_VERSION@
#define LIBPS_MINOR_VERSION @LIBPS_MINOR_VERSION@
#define LIBPS_MICRO_VERSION @LIBPS_MICRO_VERSION@

/*
 * Whether Debugging module is configured in
 */
#if @WITH_DEBUG@
#define LIBPS_DEBUG_ENABLED
#else
#define LIBPS_DEBUG_DISABLED
#endif

#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif