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

(-)Makefile (-3 / +1 lines)
Lines 15-27 Link Here
15
15
16
LIB_DEPENDS=	libyaml-cpp.so:devel/yaml-cpp
16
LIB_DEPENDS=	libyaml-cpp.so:devel/yaml-cpp
17
17
18
BROKEN_powerpc64=	fails to compile: XcomResourcePack.cpp: undefined reference to YAML::LoadFile
19
20
USE_GITHUB=	yes
18
USE_GITHUB=	yes
21
GH_ACCOUNT=	SupSuper
19
GH_ACCOUNT=	SupSuper
22
GH_PROJECT=	OpenXcom
20
GH_PROJECT=	OpenXcom
23
21
24
USES=		compiler:c++11-lang gmake pkgconfig
22
USES=		compiler:c++11-lang gl gmake pkgconfig sdl
25
USE_CXXSTD=	c++11
23
USE_CXXSTD=	c++11
26
USE_SDL=	sdl mixer image gfx
24
USE_SDL=	sdl mixer image gfx
27
USE_GL=		gl
25
USE_GL=		gl
(-)files/patch-src_Engine_Language.cpp (+10 lines)
Line 0 Link Here
1
--- src/Engine/Language.cpp.orig	2019-08-03 22:25:23 UTC
2
+++ src/Engine/Language.cpp
3
@@ -17,6 +17,7 @@
4
  * along with OpenXcom.  If not, see <http://www.gnu.org/licenses/>.
5
  */
6
 #include "Language.h"
7
+#include <algorithm>
8
 #include <assert.h>
9
 #include <locale>
10
 #include <fstream>
(-)files/patch-src_Engine_OptionInfo.cpp (+10 lines)
Line 0 Link Here
1
--- src/Engine/OptionInfo.cpp.orig	2019-08-03 22:24:06 UTC
2
+++ src/Engine/OptionInfo.cpp
3
@@ -16,6 +16,7 @@
4
  * You should have received a copy of the GNU General Public License
5
  * along with OpenXcom.  If not, see <http://www.gnu.org/licenses/>.
6
  */
7
+#include <algorithm>
8
 #include "OptionInfo.h"
9
 #include "Exception.h"
10
 
(-)files/patch-src_Menu_ListGamesState.cpp (+10 lines)
Line 0 Link Here
1
--- src/Menu/ListGamesState.cpp.orig	2019-08-03 22:29:28 UTC
2
+++ src/Menu/ListGamesState.cpp
3
@@ -17,6 +17,7 @@
4
  * along with OpenXcom.  If not, see <http://www.gnu.org/licenses/>.
5
  */
6
 #include "ListGamesState.h"
7
+#include <algorithm>
8
 #include <utility>
9
 #include "../Engine/Logger.h"
10
 #include "../Savegame/SavedGame.h"
(-)files/patch-src_Menu_ListLoadState.cpp (+10 lines)
Line 0 Link Here
1
--- src/Menu/ListLoadState.cpp.orig	2019-08-03 22:27:50 UTC
2
+++ src/Menu/ListLoadState.cpp
3
@@ -16,6 +16,7 @@
4
  * You should have received a copy of the GNU General Public License
5
  * along with OpenXcom.  If not, see <http://www.gnu.org/licenses/>.
6
  */
7
+#include <algorithm>
8
 #include "ListLoadState.h"
9
 #include "../Engine/Game.h"
10
 #include "../Engine/Language.h"
(-)files/patch-src_Savegame_Craft.cpp (+10 lines)
Line 0 Link Here
1
--- src/Savegame/Craft.cpp.orig	2019-08-03 22:32:11 UTC
2
+++ src/Savegame/Craft.cpp
3
@@ -18,6 +18,7 @@
4
  */
5
 #define _USE_MATH_DEFINES
6
 #include "Craft.h"
7
+#include <algorithm>
8
 #include <cmath>
9
 #include <sstream>
10
 #include "../Engine/Language.h"

Return to bug 239633