blob: a9cf2d87732ff0eb2ebd8422e28e537bb480dd6a (
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
|
// krdp
#define VERSION "@VERSION@"
// NOTE:
// this definition is safe for modern Linux systems
// for other OSes can be necessary to check
#define STDC_HEADERS 1
// kopete/protocols/yahoo
#cmakedefine HAVE_STRINGS_H 1
// kopete/protocols/yahoo, kppp
#cmakedefine HAVE_STRING_H 1
// kopete/protocols/jabber
#cmakedefine SUPPORT_JINGLE 1
#cmakedefine HAVE_GLIB 1
#cmakedefine HAVE_SPEEX 1
// kppp
#cmakedefine HAVE_SYS_PARAM_H 1
#cmakedefine HAVE_NET_IF_PPP_H 1
extern "C" {
unsigned long strlcpy(char*, const char*, unsigned long);
unsigned long strlcat(char*, const char*, unsigned long);
}
|