diff 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
line wrap: on
line diff
--- a/libfaim/faim/faimconfig.h	Thu Jun 29 19:38:18 2000 +0000
+++ b/libfaim/faim/faimconfig.h	Thu Jun 29 20:40:28 2000 +0000
@@ -106,14 +106,17 @@
 /*
  * Select whether or not to use POSIX thread functionality.
  * 
- * Default: defined on Linux, otherwise undefined
+ * We don't actually use threads, but we do use the POSIX mutex
+ * in order to maintain thread safety.  You can use the fake locking
+ * if you really don't like pthreads or you don't have it.
+ *
+ * Default: defined on Linux, otherwise use fake locks.
  */
-/*
 #ifdef __linux__
 #define FAIM_USEPTHREADS
+#else
+#define FAIM_USEFAKELOCKS
 #endif
-*/
-#define FAIM_USEPTHREADS
 
 #endif /* __FAIMCONFIG_H__ */