- Timestamp:
- Sep 13, 2010, 11:30:06 PM (14 years ago)
- Location:
- code/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/CMakeLists.txt
r7449 r7450 84 84 ${ZLIB_INCLUDE_DIR} 85 85 ${VLD_INCLUDE_DIR} 86 ${DBGHELP_INCLUDE_DIR} 86 87 87 88 # All includes in "externals" should be prefixed with the path … … 98 99 IF(CEGUILUA_USE_INTERNAL_LIBRARY) 99 100 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/external/ceguilua/ceguilua-${CEGUI_VERSION}) 100 ENDIF()101 102 IF (DBGHELP_FOUND)103 INCLUDE_DIRECTORIES(${DBGHELP_INCLUDE_DIR})104 101 ENDIF() 105 102 -
code/trunk/src/SpecialConfig.h.in
r7449 r7450 51 51 52 52 #cmakedefine DBGHELP_FOUND ///< If DbgHelp was found on windows 53 54 #cmakedefine ORXONOX_USE_WINMAIN ///< Using MSVC or XCode IDE 53 55 54 56 // Handle default ConfigValues … … 109 111 } } 110 112 111 #cmakedefine ORXONOX_USE_WINMAIN ///< Using MSVC or XCode IDE112 113 113 #endif /* _SpecialConfig_H__ */ -
code/trunk/src/libraries/util/SignalHandler.cc
r7449 r7450 383 383 if (SignalHandler::singletonPtr_s == 0) 384 384 { 385 COUT(1) << "Ca tchedan unhandled exception" << std::endl << "Can't write backtrace because SignalHandler is already destroyed" << std::endl;385 COUT(1) << "Caught an unhandled exception" << std::endl << "Can't write backtrace because SignalHandler is already destroyed" << std::endl; 386 386 exit(EXIT_FAILURE); 387 387 } 388 388 389 COUT(1) << "Ca tchedan unhandled exception" << std::endl << "Try to write backtrace to orxonox_crash.log..." << std::endl;389 COUT(1) << "Caught an unhandled exception" << std::endl << "Try to write backtrace to orxonox_crash.log..." << std::endl; 390 390 391 391 // write the crash log
Note: See TracChangeset
for help on using the changeset viewer.