forked from pool/glibc
e3888c4547
Various small fixes. OBS-URL: https://build.opensuse.org/request/show/75319 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=73
27 lines
1003 B
Diff
27 lines
1003 B
Diff
Index: csu/version.c
|
|
===================================================================
|
|
--- csu/version.c.orig
|
|
+++ csu/version.c
|
|
@@ -25,19 +25,20 @@ static const char __libc_release[] = REL
|
|
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) 2011 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 LIBC_ABIS_STRING
|
|
LIBC_ABIS_STRING
|
|
#endif
|
|
#ifdef GLIBC_OLDEST_ABI
|
|
"The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n"
|
|
#endif
|
|
"For bug reporting instructions, please see:\n\
|
|
<http://www.gnu.org/software/libc/bugs.html>.\n";
|
|
|