From: Paul Mangan Date: Fri, 19 Oct 2012 06:34:14 +0000 (+0000) Subject: 2012-10-19 [paul] 3.8.1cvs102 X-Git-Tag: REL_3_9_0~22 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=71d3498c82b1a6d95031169b65511e19e12626bd 2012-10-19 [paul] 3.8.1cvs102 * AUTHORS * src/crash.c * src/gtk/authors.h fix bug 2760, 'display correct libc version in crash dialog when uclibc is used'. fixes build with uclibc. patch by Natanael Copa. --- diff --git a/AUTHORS b/AUTHORS index e98c131a3..edffd3f8e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,7 +2,6 @@ Claws Mail (http://www.claws-mail.org) Holger Berndt Tristan Chabredier - Hoa viet Dinh Andrej Kacian Darko Koruga Colin Leroy @@ -11,6 +10,7 @@ Claws Mail (http://www.claws-mail.org) Salvatore De Paolis Ex Team Members + Hoa viet Dinh Keith Edmunds Match Grun Melvin Hadasht @@ -290,3 +290,4 @@ contributors (in addition to the above; based on Changelog) Michael Shell Andreas Rönnquist Sean Buckheister + Natanael Copa diff --git a/ChangeLog b/ChangeLog index 8e90be6d5..d1310b8fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2012-10-19 [paul] 3.8.1cvs102 + + * AUTHORS + * src/crash.c + * src/gtk/authors.h + fix bug 2760, 'display correct libc version in crash dialog + when uclibc is used'. + fixes build with uclibc. patch by Natanael Copa. + 2012-10-18 [mones] 3.8.1cvs101 * claws-mail.desktop diff --git a/PATCHSETS b/PATCHSETS index 6c0509253..74dd7ac8c 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -4476,3 +4476,4 @@ ( cvs diff -u -r 1.4.2.44 -r 1.4.2.45 src/common/ssl_certificate.c; ) > 3.8.1cvs99.patchset ( cvs diff -u -r 1.4.2.45 -r 1.4.2.46 src/common/ssl_certificate.c; ) > 3.8.1cvs100.patchset ( cvs diff -u -r 1.1.2.7 -r 1.1.2.8 claws-mail.desktop; ) > 3.8.1cvs101.patchset +( cvs diff -u -r 1.100.2.84 -r 1.100.2.85 AUTHORS; cvs diff -u -r 1.23.2.39 -r 1.23.2.40 src/crash.c; cvs diff -u -r 1.1.2.80 -r 1.1.2.81 src/gtk/authors.h; ) > 3.8.1cvs102.patchset diff --git a/configure.ac b/configure.ac index 482ec110b..ff8b8e564 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=101 +EXTRA_VERSION=102 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/crash.c b/src/crash.c index 8697ca510..5f3eaa992 100644 --- a/src/crash.c +++ b/src/crash.c @@ -42,7 +42,7 @@ # include #endif -#if defined(__GNU_LIBRARY__) +#if defined(__GNU_LIBRARY__) && !defined(__UCLIBC__) # include #endif @@ -443,7 +443,9 @@ static const gchar *get_compiled_in_features(void) */ static const gchar *get_lib_version(void) { -#if defined(__GNU_LIBRARY__) +#if defined(__UCLIBC__) + return g_strdup_printf("uClibc %i.%i.%i", __UCLIBC_MAJOR__, __UCLIBC_MINOR__, __UCLIBC_SUBLEVEL__); +#elif defined(__GNU_LIBRARY__) return g_strdup_printf("GNU libc %s", gnu_get_libc_version()); #else return g_strdup(_("Unknown")); diff --git a/src/gtk/authors.h b/src/gtk/authors.h index d5fe3948d..5594f9816 100644 --- a/src/gtk/authors.h +++ b/src/gtk/authors.h @@ -100,6 +100,7 @@ static char *CONTRIBS_LIST[] = { "Tsu-Fan Cheng", "Manrat Chobchuen", "Rich Coe", +"Natanael Copa", "Jonathan Corbet", "Christian Cornelssen", "George Danchev",