fixed critical bug, and using boost 1.40 as default

main
Martin Felis (schakeline) 2011-05-03 16:10:23 +02:00
parent e63456f7fe
commit b5c4ef359f
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ ELSE(WIN32 AND NOT UNIX)
SET(CPACK_SOURCE_STRIP_FILES "TRUE")
SET(CPACK_DEBIAN_PACKAGE_SECTION "Games and Amusement")
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libboost-filesystem1.42.0 (>= 1.42.0-1), libboost-system1.42.0 (>= 1.42.0-1), libc6 (>= 2.4), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libglu1-mesa | libglu1, libice6 (>= 1:1.0.0), libpng12-0 (>= 1.2.13-4), libsdl-net1.2 (>= 1.2.7), libsdl-mixer1.2 (>= 1.2.6), libsdl1.2debian (>= 1.2.10-1), libsm6, libstdc++6 (>= 4.4.0), libx11-6, libxext6, zlib1g (>= 1:1.1.4)")
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libboost-filesystem1.40.0 (>= 1.40.0-1), libboost-system1.40.0 (>= 1.40.0-1), libc6 (>= 2.4), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libglu1-mesa | libglu1, libice6 (>= 1:1.0.0), libpng12-0 (>= 1.2.13-4), libsdl-net1.2 (>= 1.2.7), libsdl-mixer1.2 (>= 1.2.6), libsdl1.2debian (>= 1.2.10-1), libsm6, libstdc++6 (>= 4.4.0), libx11-6, libxext6, zlib1g (>= 1:1.1.4)")
ENDIF(WIN32 AND NOT UNIX)
SET(CPACK_PACKAGE_EXECUTABLES "fysxasteroids" "fysxasteroidseditor")

View File

@ -566,7 +566,7 @@ int Model::DoLoadLevel (const char* filename) {
mGameModified = true;
mCurrentLevelModified = true;
}
Engine::LogDebug ("Verification for level %s OK: loading level.");
Engine::LogDebug ("Verification for level %s OK: loading level.", map_name.c_str());
std::fstream level_file (filename, std::ios::in);