summaryrefslogtreecommitdiff
path: root/config.site
diff options
context:
space:
mode:
Diffstat (limited to 'config.site')
-rw-r--r--config.site53
1 files changed, 43 insertions, 10 deletions
diff --git a/config.site b/config.site
index 54a1b746..357294c3 100644
--- a/config.site
+++ b/config.site
@@ -1,4 +1,4 @@
-# $Header: /usr/people/sam/tiff/RCS/config.site,v 1.8 1996/01/10 19:31:37 sam Exp $
+# $Header: /usr/people/sam/tiff/RCS/config.site,v 1.10 1996/02/09 05:53:45 sam Exp $
#
# TIFF Software
#
@@ -41,8 +41,8 @@
# Package controls.
#
#DSO="auto" # auto|IRIX configure DSO support for system
-#JPEG="no" # yes|no configure JPEG support
-#ZIP="no" # yes|no configure Deflate support
+#JPEG="no" # yes|no configure JPEG support (see below)
+#ZIP="no" # yes|no configure Deflate support (see below)
#LIBGL="auto" # yes|no|auto configure IRIS GL-based tools
#LIBIMAGE="auto" # yes|no|auto configure SGI RGB image tools
@@ -55,16 +55,48 @@
#DIR_MAN="/usr/local/man" # directory for manual pages
#
-# JPEG-specific parameters; used when JPEG support is enabled.
+# Configuring supporting libraries.
#
-# NB: JPEG support requires release 5 or later of the IJG code,
-# which you can find on the Internet at ftp.uu.net:/graphics/jpeg/.
+# The TIFF software makes use of two ancillary packages: the IJG
+# distribution to support the JPEG codec and the zlib distribution
+# to support the Deflate codec. To setup use of these packages you
+# need to specify where each package's include files are located and
+# where the pre-built library (static archive or DSO) is located.
+# These may be different or the same (as when the package is compiled
+# and referenced directly from the place where the software was
+# loaded and compiled).
#
-#DIRS_LIBINC="$DIRS_LIBINC ../jpeg" # directory for JPEG include files
-#LIBJPEG="-L ../jpeg -ljpeg" # JPEG library to load
+# DIRS_LIBINC is a space-separated list of directories to use for
+# locating include files in these packages. Note that it should not
+# include -I options as might be passed to the C preprocessor; these
+# are automatically added by the configure script when the Makefiles
+# are generated.
+#
+# DIR_<package>LIB is the pathname of the directory where <package>'s
+# pre-built library may be found; this is used when building a TIFF
+# DSO (on systems where support is present) and when building the
+# programs in the tools directory. By default the configure script
+# will load the associated library using
+#
+# -L${DIR_<package>LIB} -l<package>
+#
+# e.g. -L${DIR_JPEGLIB} -ljpeg. If this is wrong for your system
+# (e.g. your compiler/loader does not support the -L option), then
+# the LIB<package> parameter can be set explicitly to specify the
+# library to use.
+#
+
+#
+# JPEG-specific parameters; used when JPEG support is enabled (see above).
+#
+# JPEG support requires release 5 or later of the IJG code,
+# which you can find on the Internet at ftp.uu.net:/graphics/jpeg/.
+#
+#DIRS_LIBINC="$DIRS_LIBINC ../src/jpeg-5a" # directory for jpeg include files
+#DIR_JPEGLIB=../src/jpeg-5a # directory for libjpeg
#
-# Deflate-specific parameters; used when Deflate support is enabled.
+# Deflate-specific parameters; used when Deflate support is enabled (see above).
#
# NB: Deflate support requires version 0.92 or later of the zlib
# library written by Jean-loup Gailly and Mark Adler. Starting
@@ -76,7 +108,7 @@
# Look for it also at ftp://ftp.uu.net/pub/archiving/zip/zlib.
#
#DIRS_LIBINC="$DIRS_LIBINC ../zlib" # directory for zlib include files
-#LIBGZ="-L ../zlib -lz" # libgz library to load
+#DIR_GZLIB="../zlib" # directory for libz
#
# Miscellaneous parameters.
@@ -129,4 +161,5 @@
#LN_S="-s" # option to ${LN} to create symlink
#MV_F="-f" # option to ${MV} to force operation
#SED="/bin/sed" # pathname of suitable sed program
+#SCRIPT_SH="/bin/sh" # pathname of suitable shell
#STRIP="/bin/strip" # strip program used by install.sh