diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-10-14 21:37:22 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-10-14 21:37:22 +0000 |
commit | cfabe907d77016ff0c54c8a3cf6c90618ddf761d (patch) | |
tree | 45b4318d9cea51e305038fc30aaf58dfde5b3592 | |
parent | 2dd1601daef485ec28010ab35f97809f6411be8b (diff) |
Notes
-rw-r--r-- | games/irrlamb/Makefile | 3 | ||||
-rw-r--r-- | games/irrlamb/files/patch-src_engine_state.h | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/games/irrlamb/Makefile b/games/irrlamb/Makefile index 2c3a5e7be242..f19e62127843 100644 --- a/games/irrlamb/Makefile +++ b/games/irrlamb/Makefile @@ -16,7 +16,8 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libIrrlicht.so:${PORTSDIR}/x11-toolkits/irrlicht RUN_DEPENDS= ${LOCALBASE}/lib/libIrrlicht.so:${PORTSDIR}/x11-toolkits/irrlicht USES= scons dos2unix lua:51 -DOS2UNIX_FILES= src/engine/save.h src/objects/orb.cpp src/objects/player.cpp +DOS2UNIX_FILES= src/engine/save.h src/objects/orb.cpp src/objects/player.cpp \ + src/engine/state.h CPPPATH= ${LOCALBASE}/include ${LUA_INCDIR} LIBPATH= ${LOCALBASE}/lib ${LUA_LIBDIR} diff --git a/games/irrlamb/files/patch-src_engine_state.h b/games/irrlamb/files/patch-src_engine_state.h new file mode 100644 index 000000000000..6bff5cb92a45 --- /dev/null +++ b/games/irrlamb/files/patch-src_engine_state.h @@ -0,0 +1,10 @@ +--- src/engine/state.h.orig 2009-12-24 05:02:41 UTC ++++ src/engine/state.h +@@ -23,6 +23,7 @@ + // Namespaces + using namespace irr; + using namespace core; ++using namespace irr::core; + using namespace scene; + using namespace video; + using namespace io; |