From 013aafb7d098153e8df3a133ce6302c20396a33f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 9 Feb 2002 01:29:45 +0000 Subject: [PATCH] (banner): If TLS support available say so. --- csu/version.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/csu/version.c b/csu/version.c index 7b4f512bbe..027f8c97c5 100644 --- a/csu/version.c +++ b/csu/version.c @@ -17,6 +17,7 @@ 02111-1307 USA. */ #include "version.h" +#include #include static const char __libc_release[] = RELEASE; @@ -33,6 +34,9 @@ Compiled by GNU CC version "__VERSION__".\n" #ifdef GLIBC_OLDEST_ABI "The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n" #endif +#ifdef USE_TLS +"Thread-local storage support included.\n" +#endif "Report bugs using the `glibcbug' script to .\n"; #include -- 2.11.4.GIT