comparison libfaim/faimconfig.h @ 279:501e09c51cbc

[gaim-migrate @ 289] Updates to libfaim -> updates to gaim. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 29 May 2000 20:30:48 +0000
parents 6ced2f1c8b24
children 918db59d3814
comparison
equal deleted inserted replaced
278:29e1669b006b 279:501e09c51cbc
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.
8 * 15 *
9 */ 16 */
10 17
11 #ifndef __FAIMCONFIG_H__ 18 #ifndef __FAIMCONFIG_H__
12 #define __FAIMCONFIG_H__ 19 #define __FAIMCONFIG_H__
101 * 108 *
102 * Default: defined. 109 * Default: defined.
103 */ 110 */
104 #define AIMUTIL_USEMACROS 111 #define AIMUTIL_USEMACROS
105 112
113 /*
114 * Select whether or not to use POSIX thread functionality.
115 *
116 * Default: defined on Linux, otherwise undefined
117 */
118 /* gaim requires pthreads (though only at configure time), so this applies to
119 * more than just linux
120 #ifdef __linux__
121 #define FAIM_USEPTHREADS
122 #endif
123 */
124 #define FAIM_USEPTHREADS
125
106 #endif /* __FAIMCONFIG_H__ */ 126 #endif /* __FAIMCONFIG_H__ */
127
128