From: Ulrich Drepper Date: Sat, 9 Feb 2002 01:29:45 +0000 (+0000) Subject: (banner): If TLS support available say so. X-Git-Tag: upstream/2.30~22066 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=013aafb7d098153e8df3a133ce6302c20396a33f;p=external%2Fglibc.git (banner): If TLS support available say so. --- diff --git a/csu/version.c b/csu/version.c index 7b4f512..027f8c9 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