libgd/docs
Mike Frysinger 0f9dd9627a use current macOS naming style consistently 2021-10-30 13:49:21 -04:00
..
naturaldocs fix title 2021-08-20 08:21:43 +07:00
CMakeLists.txt Add docs build using cmake 2021-08-20 11:23:33 +07:00
ChangeLog.historic Add http://keepachangelog.com/ based changelog for 2.2.4 (MarkDown based) 2020-03-22 21:40:02 +08:00
INSTALL use current macOS naming style consistently 2021-10-30 13:49:21 -04:00
INSTALL.Solaris Add INSTALL notes for Solaris conflicting iconv.h headers (fixes #76) 2013-06-28 08:23:25 +02:00
NEWS.historic Add http://keepachangelog.com/ based changelog for 2.2.4 (MarkDown based) 2020-03-22 21:40:02 +08:00
README.CMAKE rare case, but let other not waste time trying to fix it 2021-08-27 05:03:58 +07:00
README.JPN Remove mention of HAVE_STDARG_H 2018-09-08 03:17:37 -04:00
README.TESTING +not 2021-08-21 07:57:10 +07:00
README.TXT Fix #128, min libjpeg and jpeg-turbo supported 2021-09-02 11:04:33 +07:00
README_CI.md use current macOS naming style consistently 2021-10-30 13:49:21 -04:00

README.TXT

For documentation, browse index.html.

Quick install guide:

If the sources have been fetched from git, 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
   jpeg-turbo is our recommended choise. version 2.x is required. It may build with earlier version however we do not support it (in case quality or other bugs could be seen).
   LibJpeg 6.2 required. It may compile with earlier version but we do not support it.

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.

 --with-tiff=DIR

Dto. for TIFF library.