2009-11-16 09:54:19 +01:00
|
|
|
Index: csu/version.c
|
|
|
|
===================================================================
|
|
|
|
--- csu/version.c.orig
|
|
|
|
+++ csu/version.c
|
|
|
|
@@ -24,16 +24,20 @@ static const char __libc_release[] = REL
|
2009-02-20 08:46:43 +01:00
|
|
|
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\
|
2009-05-27 12:39:38 +02:00
|
|
|
Copyright (C) 2009 Free Software Foundation, Inc.\n\
|
2009-02-20 08:46:43 +01:00
|
|
|
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
|
2009-11-16 09:54:19 +01:00
|
|
|
"The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n"
|
2009-02-20 08:46:43 +01:00
|
|
|
#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";
|
|
|
|
|