diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2006-06-29 16:51:55 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2006-06-29 16:51:55 +0000 |
commit | e7edaf6f212caeb8a5fd3e5d91e5219808416e9a (patch) | |
tree | 514308d1cbf3dec0d254ab6567fb2620ae94acea /media-video/totem/files | |
parent | * bump (diff) | |
download | historical-e7edaf6f212caeb8a5fd3e5d91e5219808416e9a.tar.gz historical-e7edaf6f212caeb8a5fd3e5d91e5219808416e9a.tar.bz2 historical-e7edaf6f212caeb8a5fd3e5d91e5219808416e9a.zip |
Fix for autoconf 2.60 from bug# 138210
Package-Manager: portage-2.1.1_pre1-r5
Diffstat (limited to 'media-video/totem/files')
-rw-r--r-- | media-video/totem/files/totem-1.4.0-autoconf.patch | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/media-video/totem/files/totem-1.4.0-autoconf.patch b/media-video/totem/files/totem-1.4.0-autoconf.patch new file mode 100644 index 000000000000..e4c462013c5f --- /dev/null +++ b/media-video/totem/files/totem-1.4.0-autoconf.patch @@ -0,0 +1,57 @@ +Index: totem-1.4.0/src/totem.c +=================================================================== +--- totem-1.4.0.orig/src/totem.c ++++ totem-1.4.0/src/totem.c +@@ -1959,7 +1959,7 @@ on_about1_activate (GtkButton *button, T + + totem->about = g_object_new (GTK_TYPE_ABOUT_DIALOG, + "name", _("Totem"), +- "version", VERSION, ++ "version", PACKAGE_VERSION, + "copyright", _("Copyright \xc2\xa9 2002-2005 Bastien Nocera"), + "comments", description, + "authors", authors, +@@ -3512,7 +3512,7 @@ main (int argc, char **argv) + #ifdef HAVE_GTK_ONLY + gtk_init (&argc, &argv); + #else +- gnome_program_init ("totem", VERSION, ++ gnome_program_init ("totem", PACKAGE_VERSION, + LIBGNOMEUI_MODULE, + argc, argv, + GNOME_PARAM_APP_DATADIR, DATADIR, +Index: totem-1.4.0/src/totem-mozilla-viewer.c +=================================================================== +--- totem-1.4.0.orig/src/totem-mozilla-viewer.c ++++ totem-1.4.0/src/totem-mozilla-viewer.c +@@ -272,7 +272,7 @@ on_about1_activate (GtkButton *button, T + + emb->about = g_object_new (GTK_TYPE_ABOUT_DIALOG, + "name", _("Totem Mozilla Plugin"), +- "version", VERSION, ++ "version", PACKAGE_VERSION, + "copyright", _("Copyright \xc2\xa9 2002-2005 Bastien Nocera"), + "comments", description, + "authors", authors, +Index: totem-1.4.0/src/vanity.c +=================================================================== +--- totem-1.4.0.orig/src/vanity.c ++++ totem-1.4.0/src/vanity.c +@@ -257,7 +257,7 @@ on_about1_activate (GtkButton *button, V + + vanity->about = g_object_new (GTK_TYPE_ABOUT_DIALOG, + "name", _("Vanity"), +- "version", VERSION, ++ "version", PACKAGE_VERSION, + "copyright", _("Copyright \xc2\xa9 2002-2005 Bastien Nocera"), + "comments", description, + "authors", authors, +@@ -654,7 +654,7 @@ main (int argc, char **argv) + + gtk_init (&argc, &argv); + #ifndef HAVE_GTK_ONLY +- gnome_program_init ("vanity", VERSION, ++ gnome_program_init ("vanity", PACKAGE_VERSION, + LIBGNOMEUI_MODULE, + argc, argv, + GNOME_PARAM_APP_DATADIR, DATADIR, |