comparison libfaim/faimconfig.h @ 282:918db59d3814

[gaim-migrate @ 292] Libfaim is versioned. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 31 May 2000 00:57:39 +0000
parents 501e09c51cbc
children
comparison
equal deleted inserted replaced
281:7b06ba09ffe2 282:918db59d3814
3 * 3 *
4 * Contains various compile-time options that apply _only_ to libfaim. 4 * Contains various compile-time options that apply _only_ to libfaim.
5 * Note that setting any of these options in a frontend header does not imply 5 * Note that setting any of these options in a frontend header does not imply
6 * that they'll get set here. Notably, the 'debug' of this file is _not_ 6 * that they'll get set here. Notably, the 'debug' of this file is _not_
7 * the same as the frontend 'debug'. They can be different values. 7 * the same as the frontend 'debug'. They can be different values.
8 *
9 * Changes by EWarmenhoven Mon May 29 20:08:17 UTC 2000:
10 * - since gaim requires pthreads to be present at ./configure-time, all
11 * systems gaim runs on theoretically have pthreads (this may not be true
12 * since gaim does not use pthreads itself, hence there are ways around it).
13 * Therefore, #define FAIM_USEPTHREADS should not be surrounded by
14 * #ifdef __linux__/#endif.
15 * 8 *
16 */ 9 */
17 10
18 #ifndef __FAIMCONFIG_H__ 11 #ifndef __FAIMCONFIG_H__
19 #define __FAIMCONFIG_H__ 12 #define __FAIMCONFIG_H__
113 /* 106 /*
114 * Select whether or not to use POSIX thread functionality. 107 * Select whether or not to use POSIX thread functionality.
115 * 108 *
116 * Default: defined on Linux, otherwise undefined 109 * Default: defined on Linux, otherwise undefined
117 */ 110 */
118 /* gaim requires pthreads (though only at configure time), so this applies to
119 * more than just linux
120 #ifdef __linux__ 111 #ifdef __linux__
121 #define FAIM_USEPTHREADS 112 #define FAIM_USEPTHREADS
122 #endif 113 #endif
123 */
124 #define FAIM_USEPTHREADS
125 114
126 #endif /* __FAIMCONFIG_H__ */ 115 #endif /* __FAIMCONFIG_H__ */
127 116
128 117