View | Details | Raw Unified | Return to bug 205020
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 16-22 Link Here
16
LICENSE_TEXT_CCbyNCSA3=CC-BY 3.0
16
LICENSE_TEXT_CCbyNCSA3=CC-BY 3.0
17
LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept
17
LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept
18
18
19
USES=		gmake
19
USES=		gmake pkgconfig
20
USE_SDL=	image2 mixer2 net2 sdl2 ttf2
20
USE_SDL=	image2 mixer2 net2 sdl2 ttf2
21
WITH_ZLIB=	yes
21
WITH_ZLIB=	yes
22
22
(-)files/patch-src_CReplayDataHeader.h (+18 lines)
Line 0 Link Here
1
Fixes the build on 32-bit architectures:
2
3
src/CReplayData.cpp: In member function 'void ReplayData::printReplayInformation()':
4
src/CReplayData.cpp:41: error: invalid conversion from 'long int*' to 'const time_t*'
5
src/CReplayData.cpp:41: error:   initializing argument 1 of 'tm* localtime(const time_t*)'
6
7
Submitted via email to guus@debian.org (upstream committer).
8
--- src/CReplayDataHeader.h
9
+++ src/CReplayDataHeader.h
10
@@ -1,7 +1,7 @@
11
 struct ReplayDataHeader
12
 {
13
 	char map[PATH_MAX];
14
-	long randomSeed;
15
+	time_t randomSeed;
16
 	float version;
17
 	int release;
18
 	int skill;

Return to bug 205020