tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
crrcsim: build with gcc6
Samuel Leathers
8 years ago
6bc775cd
86e6e801
+17
2 changed files
expand all
collapse all
unified
split
pkgs
games
crrcsim
default.nix
gcc6.patch
+4
pkgs/games/crrcsim/default.nix
···
14
mesa SDL SDL_mixer plib libjpeg
15
];
16
0
0
0
0
17
meta = {
18
description = "A model-airplane flight simulator";
19
maintainers = with stdenv.lib.maintainers; [ raskin the-kenny ];
···
14
mesa SDL SDL_mixer plib libjpeg
15
];
16
17
+
patches = [
18
+
./gcc6.patch
19
+
];
20
+
21
meta = {
22
description = "A model-airplane flight simulator";
23
maintainers = with stdenv.lib.maintainers; [ raskin the-kenny ];
+13
pkgs/games/crrcsim/gcc6.patch
···
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
diff --git c/src/mod_video/crrc_animation.cpp i/src/mod_video/crrc_animation.cpp
2
+
index ee7d7f4..855b106 100644
3
+
--- c/src/mod_video/crrc_animation.cpp
4
+
+++ i/src/mod_video/crrc_animation.cpp
5
+
@@ -84,7 +84,7 @@ void createAnimation(SimpleXMLTransfer *animation, ssgEntity* model)
6
+
else
7
+
{
8
+
std::cerr << "createAnimation: unknown animation type \'"
9
+
- << type << "\'" << std::cerr;
10
+
+ << type << "\'" << std::endl;
11
+
}
12
+
13
+
if (anim != NULL)