File: 01-the-build-date-should-not-matter

package info (click to toggle)
photopc 3.07-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,036 kB
  • sloc: ansic: 6,332; sh: 1,032; makefile: 175
file content (29 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From: Santiago Vila <sanvila@debian.org>
Subject: Do not use the build date, it should be irrelevant

--- photopc-3.05.orig/epinfo.c
+++ photopc-3.05/epinfo.c
@@ -205,8 +205,8 @@ showversion(char *name)
 #define OS "Unknown OS"
 #endif
 
-	printf("%s version %s (%s) build %s (%s memory model)\n",
-			name,VERSION,OS,__DATE__,
+	printf("%s version %s (%s) (%s memory model)\n",
+			name,VERSION,OS,
 #ifdef LOWMEMORY
 			"low"
 #else
--- photopc-3.05.orig/photopc.c
+++ photopc-3.05/photopc.c
@@ -2357,8 +2357,8 @@ showversion(char *name)
 #define OS "Unknown OS"
 #endif
 
-	printf("%s version %s (%s) build %s (%s memory model)\n",
-			name,VERSION,OS,__DATE__,
+	printf("%s version %s (%s) (%s memory model)\n",
+			name,VERSION,OS,
 #ifdef LOWMEMORY
 			"low"
 #else