(banner): If TLS support available say so.
authorUlrich Drepper <drepper@redhat.com>
Sat, 9 Feb 2002 01:29:45 +0000 (01:29 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 9 Feb 2002 01:29:45 +0000 (01:29 +0000)
csu/version.c

index 7b4f512..027f8c9 100644 (file)
@@ -17,6 +17,7 @@
    02111-1307 USA.  */
 
 #include "version.h"
+#include <tls.h>
 #include <gnu/libc-version.h>
 
 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 <bugs@gnu.org>.\n";
 
 #include <unistd.h>