Browse Source
Clean up lzma code
For some reason we were including the lzma code both via a static library and
by directly including the .c files within jlzma.cpp. The latter was causing
gcc 4.2 (Mac version) to core for reasons I was unable to determine.
Removing the inclusion seems like a much cleaner solution anyway. To avoid
link errors resulting from the fact that we have not set up C compiler flags,
use the C++ compiler to compile them.
Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>