tool to fixes some issues in baseline tiffs (with extensions), see http://andreas-romeyke.de
art1pirat
d733f72701
- using terminal sequences to improve progress output |
||
---|---|---|
common | ||
doc | ||
docker | ||
examples | ||
src | ||
LICENSE | ||
README.1st | ||
README.aix | ||
README.compile | ||
README.docker | ||
README.windows |
README.windows
Crosscompiling to Windows ========================= == preparation == * Install mingw-C-Compiler under Linux == libtiff == * needed to compile fixit_tiff and checkit_tiff * download the libtiff Source package ** http://libtiff.maptools.org/ (tiff-4.0.6.tar.gz or higher) * crosscompile libtiff for windows ** cd to unzipped source package ** ./configure --host=i686-w64-mingw32 --disable-win32-io (the option "--disable-win32-io" is necessary to get correct filedescriptor under windows) ** make -j 2 == fixit_tiff == * now compile fixit-tool ** cd to fixit-tool directory ** mkdir build_windows ** cd build_windows ** cmake -DCMAKE_TOOLCHAIN_FILE=../src/toolchain-mingw32.cmake -DTIFF_LIBRARY=~/Downloads/tiff-4.0.6/libtiff/.libs/libtiff.a -DTIFF_INCLUDE_DIR=~/Downloads/tiff-4.0.6/libtiff/ ../src/ ** make