diff options
author | stas <stas@FreeBSD.org> | 2012-04-08 03:55:25 +0000 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2012-04-08 03:55:25 +0000 |
commit | f5f18fea0eba5a0b1ed9857b094aa84805724afc (patch) | |
tree | b24e1e76a26f9c5b5117b268940c3baa4e7b6de2 /lib/libgssapi | |
parent | e793af405d6f199b36653928e63ece418fd3521e (diff) | |
download | FreeBSD-src-f5f18fea0eba5a0b1ed9857b094aa84805724afc.zip FreeBSD-src-f5f18fea0eba5a0b1ed9857b094aa84805724afc.tar.gz |
- Use __NO_TLS preprocessor value to make assumptions about TLS support
on a platform.
Diffstat (limited to 'lib/libgssapi')
-rw-r--r-- | lib/libgssapi/gss_display_status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libgssapi/gss_display_status.c b/lib/libgssapi/gss_display_status.c index 6f5d1fb..b2a22d2 100644 --- a/lib/libgssapi/gss_display_status.c +++ b/lib/libgssapi/gss_display_status.c @@ -173,7 +173,7 @@ supplementary_error(OM_uint32 v) return msgs[v]; } -#if defined(__sparc64__) || defined(__arm__) || defined(__mips__) +#if defined(__NO_TLS) /* * These platforms don't support TLS on FreeBSD - threads will just |