From 3ca0937c1cc5c229eb07d4e07de2979c0e024e47 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 10 Jan 2010 13:12:34 +0000 Subject: (svn r18769) -Codechange: replace MiniLZO with the real library. If you're using MSVC update openttd-useful, otherwise make sure you've got liblzo2 and it's development files installed. --- src/crashlog.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/crashlog.cpp') diff --git a/src/crashlog.cpp b/src/crashlog.cpp index d9c384acd..f66c1de0d 100644 --- a/src/crashlog.cpp +++ b/src/crashlog.cpp @@ -134,6 +134,9 @@ char *CrashLog::LogConfiguration(char *buffer, const char *last) const #ifdef WITH_ICU # include #endif /* WITH_ICU */ +#ifdef WITH_LZO +#include +#endif #ifdef WITH_SDL # include "sdl.h" # include @@ -173,6 +176,10 @@ char *CrashLog::LogLibraries(char *buffer, const char *last) const buffer += seprintf(buffer, last, " ICU: %s\n", buf); #endif /* WITH_ICU */ +#ifdef WITH_LZO + buffer += seprintf(buffer, last, " LZO: %s\n", lzo_version_string()); +#endif + #ifdef WITH_PNG buffer += seprintf(buffer, last, " PNG: %s\n", png_get_libpng_ver(NULL)); #endif /* WITH_PNG */ -- cgit v1.2.3-70-g09d2