File wxWidgets.uname.patch of Package wxWidgets-wxcontainer
---
configure | 2 +-
configure.in | 2 +-
src/common/wincmn.cpp | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
--- a/configure
+++ b/configure
@@ -47350,7 +47350,7 @@ fi
if test "$cross_compiling" = "yes"; then
OSINFO="\"$host\""
else
- OSINFO=`uname -s -r -m`
+ OSINFO=`uname -s -m`
OSINFO="\"$OSINFO\""
fi
--- a/configure.in
+++ b/configure.in
@@ -7806,7 +7806,7 @@ if test "$cross_compiling" = "yes"; then
OSINFO="\"$host\""
else
dnl attualy work out OS version
- OSINFO=`uname -s -r -m`
+ OSINFO=`uname -s -m`
OSINFO="\"$OSINFO\""
fi
--- a/src/common/wincmn.cpp
+++ b/src/common/wincmn.cpp
@@ -2378,12 +2378,12 @@ void wxWindowBase::OnMiddleClick( wxMous
#else
wxEmptyString,
#endif
- __TDATE__,
- __TTIME__,
+ wxEmptyString,
+ wxEmptyString,
wxPlatformInfo::Get().GetToolkitMajorVersion(),
wxPlatformInfo::Get().GetToolkitMinorVersion(),
#ifdef __WXGTK__
- wxString::Format(_T("\nThe compile-time GTK+ version is %d.%d.%d."), GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION).c_str()
+ wxString::Format(_T("\nThe compile-time GTK+ version is %d."), GTK_MAJOR_VERSION).c_str()
#else
wxEmptyString
#endif