[linphone] new glib-2.31 patch

nucleo nucleo at fedoraproject.org
Thu Mar 1 17:06:50 UTC 2012


commit 99aa4e454395e80f150e0fc5c5ad474d32ffa285
Author: nucleo <nucleo at fedoraproject.org>
Date:   Thu Mar 1 19:06:48 2012 +0200

    new glib-2.31 patch

 linphone-3.5.2-glib-2.31.patch |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)
---
diff --git a/linphone-3.5.2-glib-2.31.patch b/linphone-3.5.2-glib-2.31.patch
index e69de29..ebd21cd 100644
--- a/linphone-3.5.2-glib-2.31.patch
+++ b/linphone-3.5.2-glib-2.31.patch
@@ -0,0 +1,40 @@
+diff --git a/gtk/main.c b/gtk/main.c
+index 6e7ca02..76ead50 100644
+--- a/gtk/main.c
++++ b/gtk/main.c
+@@ -1643,7 +1643,9 @@ int main(int argc, char *argv[]){
+ 	GdkPixbuf *pbuf;
+ 	const char *app_name="Linphone";
+ 
++#if !GLIB_CHECK_VERSION(2, 31, 0)
+ 	g_thread_init(NULL);
++#endif
+ 	gdk_threads_init();
+ 	
+ 	progpath = strdup(argv[0]);
+diff --git a/gtk/setupwizard.c b/gtk/setupwizard.c
+index 1c54fca..ae1bcfa 100644
+--- a/gtk/setupwizard.c
++++ b/gtk/setupwizard.c
+@@ -270,7 +270,11 @@ static void account_username_changed(GtkEntry *entry, GtkWidget *w) {
+ 	linphone_account_creator_set_username(creator, gtk_entry_get_text(username));
+ 
+ 	if (g_regex_match_simple("^[a-zA-Z]+[a-zA-Z0-9.\\-_]{3,}$", gtk_entry_get_text(username), 0, 0)) {
++#if !GLIB_CHECK_VERSION(2, 31, 0)
+ 		g_thread_create(check_username_availability, (void*)w, FALSE, NULL);
++#else
++		g_thread_new(NULL, check_username_availability, w);
++#endif
+ 	}
+ 	else {
+ 		if (gtk_entry_get_text_length(username) < LOGIN_MIN_SIZE) {
+@@ -534,7 +538,9 @@ GtkWidget * linphone_gtk_create_assistant(void){
+ 	ok = create_pixbuf(linphone_gtk_get_ui_config("ok","ok.png"));
+ 	notok = create_pixbuf(linphone_gtk_get_ui_config("notok","notok.png"));
+ 
++#if !GLIB_CHECK_VERSION(2, 31, 0)
+ 	g_thread_init (NULL);
++#endif
+ 	gdk_threads_init ();
+ 
+ 	GtkWidget *p1=create_intro();


More information about the scm-commits mailing list