blob: 6676c8b38aec9780076817f53b6dfa1df9ef66b5 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#cmakedefine PACKAGE "@PACKAGE@"
#cmakedefine VERSION "@VERSION@"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
// 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
#if !defined( HAVE_MACHINE_APM_BIOS_H )
#cmakedefine HAVE_MACHINE_APM_BIOS_H
#endif // HAVE_MACHIE_APM_BIOS_H
#if !defined( HAVE_DEV_APM_APMIO_H )
#cmakedefine HAVE_DEV_APM_APMIO_H
#endif // HAVE_DEV_APM_APMIO_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
#cmakedefine HAVE_STATFS
#if !defined( HAVE_STATVFS )
#cmakedefine HAVE_STATVFS
#endif
#cmakedefine HAVE_GETMNTINFO
#cmakedefine GETMNTINFO_USES_STATVFS
// superkaramba
#cmakedefine HAVE_XMMS
#cmakedefine HAVE_TDENEWSTUFF
#if !defined( HAVE_SYS_TYPES_H )
#cmakedefine HAVE_SYS_TYPES_H
#endif // HAVE_SYS_TYPES_H
|