diff options
author | 2008-09-28 09:23:29 +0000 | |
---|---|---|
committer | 2008-09-28 09:23:29 +0000 | |
commit | c598d639bbc60df1e3cddb9e5cf48b47ebe08b72 (patch) | |
tree | 9bb87f7858118971e44f7f8d95fa5a79f97f2637 /app-cdr/gnomebaker/files | |
parent | Fixed dash compat. Bug 233408. (diff) | |
download | historical-c598d639bbc60df1e3cddb9e5cf48b47ebe08b72.tar.gz historical-c598d639bbc60df1e3cddb9e5cf48b47ebe08b72.tar.bz2 historical-c598d639bbc60df1e3cddb9e5cf48b47ebe08b72.zip |
Cleanup
Package-Manager: portage-2.2_rc11/cvs/Linux 2.6.25.8 i686
Diffstat (limited to 'app-cdr/gnomebaker/files')
-rw-r--r-- | app-cdr/gnomebaker/files/gnomebaker-0.6.1-export-dynamic_for_glade.patch | 21 | ||||
-rw-r--r-- | app-cdr/gnomebaker/files/gnomebaker-0.6.1-thread_init.patch | 27 |
2 files changed, 0 insertions, 48 deletions
diff --git a/app-cdr/gnomebaker/files/gnomebaker-0.6.1-export-dynamic_for_glade.patch b/app-cdr/gnomebaker/files/gnomebaker-0.6.1-export-dynamic_for_glade.patch deleted file mode 100644 index 90e75fdc3752..000000000000 --- a/app-cdr/gnomebaker/files/gnomebaker-0.6.1-export-dynamic_for_glade.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nur gnomebaker-0.6.0.dist/src/Makefile.am gnomebaker-0.6.0/src/Makefile.am ---- gnomebaker-0.6.0.dist/src/Makefile.am 2006-05-06 00:54:15.000000000 +0200 -+++ gnomebaker-0.6.0/src/Makefile.am 2007-01-22 01:45:33.000000000 +0100 -@@ -36,3 +36,6 @@ - cairofillbar.c cairofillbar.h - - gnomebaker_LDADD = @GNOMEBAKER_LIBS@ -+ -+gnomebaker_LDFLAGS = -export-dynamic -+ -diff -Nur gnomebaker-0.6.0.dist/src/Makefile.in gnomebaker-0.6.0/src/Makefile.in ---- gnomebaker-0.6.0.dist/src/Makefile.in 2006-09-16 01:06:13.000000000 +0200 -+++ gnomebaker-0.6.0/src/Makefile.in 2007-01-22 01:45:33.000000000 +0100 -@@ -249,6 +249,7 @@ - cairofillbar.c cairofillbar.h - - gnomebaker_LDADD = @GNOMEBAKER_LIBS@ -+gnomebaker_LDFLAGS = -export-dynamic - all: all-am - - .SUFFIXES: diff --git a/app-cdr/gnomebaker/files/gnomebaker-0.6.1-thread_init.patch b/app-cdr/gnomebaker/files/gnomebaker-0.6.1-thread_init.patch deleted file mode 100644 index 2668bcc54b83..000000000000 --- a/app-cdr/gnomebaker/files/gnomebaker-0.6.1-thread_init.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- src/main.c 2006-08-31 01:41:15.000000000 +0200 -+++ src/main_fixed.c 2007-05-10 23:22:33.000000000 +0200 -@@ -49,6 +49,9 @@ static GOptionEntry entries[] = - gint - main(gint argc, gchar *argv[]) - { -+ /* This must happen before any other GLib function is called */ -+ if (!g_thread_supported ()) g_thread_init(NULL); -+ - GError *error = NULL; - GOptionContext *context = g_option_context_new(_(" - GNOME CD/DVD burning application")); - /* add main entries */ -@@ -71,12 +74,11 @@ main(gint argc, gchar *argv[]) - textdomain (GETTEXT_PACKAGE); - #endif - -+ gdk_threads_init(); -+ - #ifdef GST_010 - struct poptOption* options = NULL; - #else -- if (!g_thread_supported ()) g_thread_init(NULL); -- gdk_threads_init(); -- - struct poptOption options[] = - { - {NULL, '\0', POPT_ARG_INCLUDE_TABLE, NULL, 0, "GStreamer", NULL}, |