forked from pool/glibc
28 lines
965 B
Diff
28 lines
965 B
Diff
--- csu/version.c
|
|
+++ csu/version.c 2003/06/25 07:01:44
|
|
@@ -24,11 +24,12 @@
|
|
static const char __libc_version[] = VERSION;
|
|
|
|
static const char banner[] =
|
|
-"GNU C Library "RELEASE" release version "VERSION", by Roland McGrath et al.\n\
|
|
+"GNU C Library "RELEASE" release version "VERSION" ("CVSDATE"), by Roland McGrath et al.\n\
|
|
Copyright (C) 2008 Free Software Foundation, Inc.\n\
|
|
This is free software; see the source for copying conditions.\n\
|
|
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
|
|
PARTICULAR PURPOSE.\n\
|
|
+Configured for "CONFHOST".\n\
|
|
Compiled by GNU CC version "__VERSION__".\n"
|
|
#include "version-info.h"
|
|
#ifdef GLIBC_OLDEST_ABI
|
|
@@ -37,6 +38,9 @@
|
|
#ifdef USE_TLS
|
|
"Thread-local storage support included.\n"
|
|
#endif
|
|
+#ifdef FLOATING_STACKS
|
|
+"pthread library is compiled with floating stack support enabled.\n"
|
|
+#endif
|
|
"For bug reporting instructions, please see:\n\
|
|
<http://www.gnu.org/software/libc/bugs.html>.\n";
|
|
|
|
|