blob: caff6e306904ead1778ebebeba56069e0145ffea (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#cmakedefine PACKAGE "@PACKAGE@"
#cmakedefine VERSION "@VERSION@"
// ark
#cmakedefine HAVE_STRLCPY_PROTO
#if !defined(HAVE_STRLCPY_PROTO)
# ifdef __cplusplus
extern "C" {
# endif
unsigned long strlcpy(char*, const char*, unsigned long);
# ifdef __cplusplus
}
# endif
#endif
#cmakedefine HAVE_STRLCAT_PROTO
#if !defined(HAVE_STRLCAT_PROTO)
# ifdef __cplusplus
extern "C" {
# endif
unsigned long strlcat(char*, const char*, unsigned long);
# ifdef __cplusplus
}
# endif
#define HAVE_STRLCAT
#endif
// NOTE: some macros already defined in python.h so if they
// won't be ifdefed they couse superkaramba to
// produce lots of warnings.
// kcalc
#cmakedefine SIZEOF_UNSIGNED_LONG @SIZEOF_UNSIGNED_LONG@
#if !defined( HAVE_STDLIB_H )
#cmakedefine HAVE_STDLIB_H
#endif // HAVE_STDLIB_H
#if !defined( HAVE_LONG_DOUBLE )
#cmakedefine HAVE_LONG_DOUBLE
#endif // HAVE_LONG_DOUBLE
#cmakedefine HAVE_L_FUNCS
#cmakedefine HAVE_IEEEFP_H
#cmakedefine HAVE_FUNC_ISINF
#cmakedefine HAVE_FUNC_ROUND
#cmakedefine HAVE_FUNC_ROUNDL
// klaptopdaemon
#if !defined( HAVE_STDINT_H )
#cmakedefine HAVE_STDINT_H
#endif // HAVE_STDINT_H
#cmakedefine HAVE_XSCREENSAVER
#cmakedefine HAVE_DPMS
#cmakedefine HAVE_DPMSINFO_PROTO
// ksim
#if !defined( HAVE_SYS_STATVFS_H )
#cmakedefine HAVE_SYS_STATVFS_H
#endif // HAVE_SYS_STATVFS_H
#cmakedefine HAVE_SYS_STATFS_H
#cmakedefine HAVE_SYS_VFS_H
#cmakedefine HAVE_SYS_MOUNT_H
#cmakedefine HAVE_MNTENT_H
#cmakedefine HAVE_SYS_UCRED_H
#cmakedefine HAVE_SYS_MNTTAB_H
#cmakedefine HAVE_SYS_LOADAVG_H
#cmakedefine HAVE_SYSINFO_HIGH
#if !defined( HAVE_GETLOADAVG )
#cmakedefine HAVE_GETLOADAVG
#endif // HAVE_GETLOADAVG
// superkaramba
#cmakedefine HAVE_XMMS
#cmakedefine HAVE_KNEWSTUFF
#if !defined( HAVE_SYS_TYPES_H )
#cmakedefine HAVE_SYS_TYPES_H
#endif // HAVE_SYS_TYPES_H
|