Bug#819703: Patch to remove obsolesence checking

2016-04-03 Thread Santiago Vila
On Mon, Apr 04, 2016 at 01:26:17AM +0200, Axel Beckert wrote: > Hi Santiago, > > Santiago Vila wrote: > > Sorry, the not-so-short patch would be like this. > > That edits four files. Yes, I know, but the function says "leave this code intact and this warning in place" :-) In the unlikely case

Bug#819703: Patch to remove obsolesence checking

2016-04-03 Thread Alexander Gerasiov
Hello Santiago, On Mon, 4 Apr 2016 01:02:01 +0200 Santiago Vila wrote: > On Sun, Apr 03, 2016 at 05:39:49PM -0400, Michael Greger wrote: > > Here's a patch to remove the obsolensence checking that > > xscreensaver does. > > For an upload to stable-proposed-updates, the release

Bug#819703: Patch to remove obsolesence checking

2016-04-03 Thread Axel Beckert
Hi Santiago, Santiago Vila wrote: > Sorry, the not-so-short patch would be like this. That edits four files. The patch posted in the initial bug report (https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;att=1;filename=patch.txt;bug=819703) only added a single line ("return 0" to senescent_p())

Bug#819703: Patch to remove obsolesence checking

2016-04-03 Thread Santiago Vila
Sorry, the not-so-short patch would be like this. --- a/driver/demo-Gtk.c +++ b/driver/demo-Gtk.c @@ -5292,7 +5292,7 @@ main (int argc, char **argv) the_network_is_not_the_computer (s); - if (senescent_p()) + if (0) warning_dialog (s->toplevel_widget, _("Warning:\n\n"

Bug#819703: Patch to remove obsolesence checking

2016-04-03 Thread Santiago Vila
On Sun, Apr 03, 2016 at 05:39:49PM -0400, Michael Greger wrote: > Here's a patch to remove the obsolensence checking that xscreensaver does. For an upload to stable-proposed-updates, the release managers appreciate that diffs are as small and easy to understand as possible, so the shorter the

Bug#819703: Patch to remove obsolesence checking

2016-04-03 Thread Michael Greger
Here's a patch to remove the obsolensence checking that xscreensaver does. Currently there's no way for a user to disable or prevent the annoying popups everytime their system starts. Amazingly bad idea. diff -rupN xscreensaver-5.30/driver/demo-Gtk.c xscreensaver-5.30.fixed/driver/demo-Gtk.c ---