Go to file
Ondřej Surý ce29d5cae4 Remove one more outstanding Makefile.am 2013-04-08 09:21:16 +02:00
VMS Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
cmake Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
config Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
docs Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
examples avoid non init'ed im if no png support 2013-04-04 16:56:13 +02:00
m4 Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
netware Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
src Fix typo in configure.ac - second VPX is in fact TIFF library 2013-04-08 09:16:26 +02:00
test Remove one more outstanding Makefile.am 2013-04-08 09:21:16 +02:00
tests Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
windows Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
.hgignore Download libimagequant in cmakefile if needed 2013-03-25 23:46:54 +00:00
.hgtags update tags 2009-07-14 18:07:10 +00:00
CMakeLists.txt CMakeLists.txt: fixed copy/paste mistake (PNG_INCLUDE_DIR/ZLIB_INCLUDE_DIR) 2013-04-05 19:25:31 +01:00
ChangeLog - mv ChangeLog and NEWS 2007-10-04 11:22:54 +00:00
Makefile.am Merge outstanding autotools changes 2013-04-08 09:12:06 +02:00
NEWS fixed FS#100 2010-01-19 17:58:20 +09:00
bootstrap.sh Fix build with autotools. 2013-04-07 00:12:32 +02:00
configure.ac Fix typo in configure.ac - second VPX is in fact TIFF library 2013-04-08 09:16:26 +02:00

docs/README.TXT

For documentation, browse index.html.

Quick install guide:

If the sources have been fetched from CVS, run bootstrap.sh [options].

From a released source, use:
1. Type './configure'
2. Type 'make install'

Generic configuration instructions are in the file INSTALL.

The following 3rd-party libraries will be used by gd if found by configure.
While gd will compile and install even without these, we suggest that at
least zlib and libpng are installed, and recommend that freetype and jpeg
are installed as well:

1. zlib, available from http://www.gzip.org/zlib/
   Data compression library

2. libpng, available from http://www.libpng.org/pub/png/
   Portable Network Graphics library; requires zlib

3. FreeType 2.x, available from http://www.freetype.org/
   Free, high-quality, and portable font engine

4. JPEG library, available from http://www.ijg.org/
   Portable JPEG compression/decompression library

5. XPM, available from http://koala.ilog.fr/lehors/xpm.html
   X Pixmap library

If any of these libraries are installed, but not detected by configure,
you can use the following command line options:

--with-png=DIR

  Without the DIR argument, configure will check for png header files and
  libraries in a default location. To switch off png support, use
  --without-png, or --with-png=no.

  If the DIR argument is specified, configure tries to find the png header
  files in DIR/include, and the libraries in DIR/lib. To accommodate
  OpenBSD ports, DIR/include/libpng is also checked if necessary.

--with-freetype=DIR

  Dto. for freetype 2.x library. The search path for include files is
  DIR/include/freetype2.

--with-jpeg=DIR

  Dto. for jpeg library.

--with-xpm=DIR

  Dto. for xpm library.