comparison libfaim/faim/faimconfig.h @ 445:e4c34ca88d9b

[gaim-migrate @ 455] Hehehehehe Libfaim got updated, gaim got updated. btw, gaim/faim can't sign in yet, don't ask me why. it's not my fault. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 29 Jun 2000 20:40:28 +0000
parents a91a898ea22d
children 58106806ac2b
comparison
equal deleted inserted replaced
444:e7885c54ed2f 445:e4c34ca88d9b
104 #define AIMUTIL_USEMACROS 104 #define AIMUTIL_USEMACROS
105 105
106 /* 106 /*
107 * Select whether or not to use POSIX thread functionality. 107 * Select whether or not to use POSIX thread functionality.
108 * 108 *
109 * Default: defined on Linux, otherwise undefined 109 * We don't actually use threads, but we do use the POSIX mutex
110 * in order to maintain thread safety. You can use the fake locking
111 * if you really don't like pthreads or you don't have it.
112 *
113 * Default: defined on Linux, otherwise use fake locks.
110 */ 114 */
111 /*
112 #ifdef __linux__ 115 #ifdef __linux__
113 #define FAIM_USEPTHREADS 116 #define FAIM_USEPTHREADS
117 #else
118 #define FAIM_USEFAKELOCKS
114 #endif 119 #endif
115 */
116 #define FAIM_USEPTHREADS
117 120
118 #endif /* __FAIMCONFIG_H__ */ 121 #endif /* __FAIMCONFIG_H__ */
119 122
120 123