Small, quick compile fixes
authorChristoph Sommer <mail@christoph-sommer.de>
Thu, 1 Jan 2009 20:22:29 +0000 (20:22 +0000)
committerChristoph Sommer <mail@christoph-sommer.de>
Thu, 1 Jan 2009 20:22:29 +0000 (20:22 +0000)
SVN-Revision: 5825

CMakeLists.txt
src/main.cpp

index 65f043a..002bfc4 100644 (file)
@@ -39,8 +39,12 @@ PROJECT(SUPERTUX)
 
 ### CMake configuration
 
-# allow building with old CMake. Use some bundled modules as a fallback
+# allow building with old CMake. Set compatibility options. Use some bundled modules as a fallback
 CMAKE_MINIMUM_REQUIRED(VERSION 2.4)
+IF(COMMAND cmake_policy)
+       CMAKE_POLICY(SET CMP0003 NEW)
+ENDIF(COMMAND cmake_policy)
+
 SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${SUPERTUX_SOURCE_DIR}/mk/cmake)
 
 # move some config clutter to the advanced section
index 8a8dc7c..3fa4158 100644 (file)
@@ -234,7 +234,7 @@ static void print_usage(const char* argv0)
             "  --record-demo FILE LEVEL     Record a demo to FILE\n"
             "  --play-demo FILE LEVEL       Play a recorded demo\n"
             "  -s, --debug-scripts          Enable script debugger.\n"
-            "\n"));
+            "%s\n"), "");
 }
 
 /**