openbsd-ports/games/xevil/patches/patch-cmn_game_cpp
espie 65c6d6d7a0 let it build with clang: newer includes, don't warn on xpm (too noisy)
fix nonsense in introduced patches (unsigned intptr_t indeed!)
2017-05-02 23:26:32 +00:00

22 lines
393 B
Plaintext

$OpenBSD: patch-cmn_game_cpp,v 1.2 2017/05/02 23:26:32 espie Exp $
Index: cmn/game.cpp
--- cmn/game.cpp.orig
+++ cmn/game.cpp
@@ -34,13 +34,14 @@ extern "C" {
}
#if X11
-#include <strstream.h>
+#include <strstream>
+using namespace std;
#endif
#if WIN32
#include <strstrea.h>
#endif
-#include <iomanip.h>
+#include <iomanip>
#include "utils.h"
#include "coord.h"