aboutsummaryrefslogtreecommitdiff
path: root/games/highmoon
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2005-01-27 18:22:37 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2005-01-27 18:22:37 +0000
commite02c7f2ab778d995551e14340951d982402fb899 (patch)
treec2d280c7d08fb47cdd4df294598da46c3c08f50f /games/highmoon
parent8c4a1a473289576d7a8df90d8351d79b2e690495 (diff)
downloadports-e02c7f2ab778d995551e14340951d982402fb899.tar.gz
ports-e02c7f2ab778d995551e14340951d982402fb899.zip
Notes
Diffstat (limited to 'games/highmoon')
-rw-r--r--games/highmoon/files/patch-galaxy.cpp14
-rw-r--r--games/highmoon/files/patch-graphics.hpp15
-rw-r--r--games/highmoon/files/patch-sound.cpp14
3 files changed, 43 insertions, 0 deletions
diff --git a/games/highmoon/files/patch-galaxy.cpp b/games/highmoon/files/patch-galaxy.cpp
new file mode 100644
index 000000000000..e9ce7295d553
--- /dev/null
+++ b/games/highmoon/files/patch-galaxy.cpp
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- galaxy.cpp.orig
++++ galaxy.cpp
+@@ -24,7 +24,7 @@
+ ******************************************************************************************/
+
+ #include <cmath>
+-
++#include <time.h>
+ #include "galaxy.hpp"
+ #include "sound.hpp"
+
diff --git a/games/highmoon/files/patch-graphics.hpp b/games/highmoon/files/patch-graphics.hpp
new file mode 100644
index 000000000000..dfb2caba9b73
--- /dev/null
+++ b/games/highmoon/files/patch-graphics.hpp
@@ -0,0 +1,15 @@
+
+$FreeBSD$
+
+--- graphics.hpp.orig
++++ graphics.hpp
+@@ -30,7 +30,8 @@
+ #define __GRAPHICS_HPP__
+
+ #include <SDL.h>
+-
++#include <sstream>
++#include <string>
+ #include "constants.hpp"
+
+ /******************************************************************************************
diff --git a/games/highmoon/files/patch-sound.cpp b/games/highmoon/files/patch-sound.cpp
new file mode 100644
index 000000000000..7d24d8b5fb0f
--- /dev/null
+++ b/games/highmoon/files/patch-sound.cpp
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- sound.cpp.orig
++++ sound.cpp
+@@ -24,7 +24,7 @@
+ ******************************************************************************************/
+
+ #include <iostream>
+-
++#include <stdlib.h>
+ #include "sound.hpp"
+
+ Soundset::Sample Soundset::sounds[ NUMBEROFCHANNELS ];