~ubuntu-branches/ubuntu/precise/gtimer/precise-proposed

« back to all changes in this revision

Viewing changes to debian/patches/15_109329-versiontimeout.patch

  • Committer: Bazaar Package Importer
  • Author(s): Taylor LeMasurier-Wren
  • Date: 2011-08-06 03:07:30 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110806030730-9wtxfpgsf1h4ulac
Tags: 2.0.0-1
* Update watch file
* Update debhelper compatibilty to V7 (significantly clean up packaging)
* New Upstream Release (Closes: #575666: RFP: GTimer -- GTK-based tool for
  timing tasks)
* Initial release. (Closes: #636822: ITP: gtimer -- GTK-based X11 task
  timer)
* Switch to dpkg-source 3.0 (quilt) format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Yes, this is a shitty hack, but who cares.
2
 
        -- chewie@debian.org
3
 
 
4
 
diff -urN gtimer-1.1.6/main.c gtimer-1.1.6.new/main.c
5
 
--- gtimer-1.1.6/main.c Fri May  9 18:13:35 2003
6
 
+++ gtimer-1.1.6.new/main.c     Fri May  9 18:13:26 2003
7
 
@@ -2467,6 +2467,14 @@
8
 
   char *next_check, now_str[20];
9
 
   int do_check = FALSE;
10
 
 
11
 
+  /**
12
 
+   * 2003/05/09 Chad Walstrom <chewie@debian.org>
13
 
+   *   Since this auto version checking is not configurable -- it can't be shut
14
 
+   *   off -- we'll just shortcut the whole process and return TRUE like a
15
 
+   *   happy camper.
16
 
+   */
17
 
+  return ( TRUE );
18
 
+
19
 
   time ( &now );
20
 
   sprintf ( now_str, "%ul", (unsigned int)now );
21
 
   if ( configGetAttribute ( CONFIG_NEXT_VERSION_CHECK, &next_check ) == 0 ) {