2002-11-15 04:37:24 +01:00
|
|
|
/* This produces a makefile fragment saying `use-thread = yes' or no. */
|
|
|
|
|
|
|
|
#include <tls.h>
|
|
|
|
|
2003-03-26 23:49:50 +01:00
|
|
|
#if USE_TLS
|
|
|
|
@@@ use-tls = yes @@@
|
|
|
|
#else
|
|
|
|
@@@ use-tls = no @@@
|
|
|
|
#endif
|
|
|
|
|
2002-11-15 04:37:24 +01:00
|
|
|
#if USE___THREAD
|
|
|
|
@@@ use-thread = yes @@@
|
|
|
|
#else
|
|
|
|
@@@ use-thread = no @@@
|
|
|
|
#endif
|