Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
diana:windows:building:image [2009-11-13 12:46:56] dages |
diana:windows:building:image [2022-05-31 09:29:31] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Building | + | ====== Building |
- | ===== zlib ===== | + | Download and extract the correct versions of zlib, libpng, jpeg and tiff: |
- | Start by installing the MinGW version of zlib (http://downloads.sourceforge.net/ | + | ^ Package |
+ | | libpng | ||
+ | | jpeg | http://www.ijg.org/files/ | 8 | | ||
+ | | tiff | ftp://ftp.remotesensing.org/pub/ | ||
- | ===== libtiff ===== | + | Build them in the order in which they are listed in the table. |
- | Download and extract ftp:// | + | In each case, after extracting, run the following commands: |
- | $ bsdtar xf tiff-3.9.2.tar.gz | + | $ LDFLAGS=-L/c/met.no/lib CPPFLAGS=-I/ |
- | $ cd tiff-3.9.2 | + | $ make all install |
- | See [[windows: | + | Copy the licenses: |
- | $ aclocal | + | //libpng// |
- | $ libtoolize --copy --force | + | |
- | $ automake --add-missing --copy --foreign | + | |
- | $ autoheader | + | |
- | $ autoconf | + | |
- | Now you can configure, build and install: | + | $ cp LICENSE / |
- | $ ./autogen.sh | + | //jpeg// |
- | $ ./configure --prefix=/mingw | + | |
- | $ make install | + | |
- | Do //not// install to ''/''; | + | $ cp README |
- | **Revisit later in re thread safety** | + | //tiff// |
- | ===== libjpeg ===== | + | $ cp COPYRIGHT / |
- | + | ||
- | TBD | + | |
- | + | ||
- | ===== linpng ===== | + | |
- | + | ||
- | TBD | + | |