summaryrefslogtreecommitdiff
path: root/config.site
blob: a680210e26f77a4f4a40de81ce68ed0040fa80fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# $Header: /usr/people/sam/tiff/RCS/config.site,v 1.7 1995/10/10 01:03:54 sam Exp $
#
# TIFF Software
#
# Copyright (c) 1990-1995 Sam Leffler
# Copyright (c) 1991-1995 Silicon Graphics, Inc.
# 
# Permission to use, copy, modify, distribute, and sell this software and 
# its documentation for any purpose is hereby granted without fee, provided
# that (i) the above copyright notices and this permission notice appear in
# all copies of the software and related documentation, and (ii) the names of
# Sam Leffler and Silicon Graphics may not be used in any advertising or
# publicity relating to the software without the specific, prior written
# permission of Sam Leffler and Silicon Graphics.
# 
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
# 
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
# OF THIS SOFTWARE.
#

#
# This file holds site-specific configuration parameters.
#
# Nothing is defined in here by default, the definitions
# commented out below serve as documentation for what you
# can set in this file or a config.local file.
#
# Note that you do not need to set anything here unless you
# want to override the auto-configuration behaviour and/or
# interactive prompting done by the configure script.
#

#
# 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
#LIBGL="auto"			# yes|no|auto configure IRIS GL-based tools
#LIBIMAGE="auto"		# yes|no|auto configure SGI RGB image tools

#
# Directory parameters.
#
#DIR_BIN="/usr/local/bin"		# directory for tools
#DIR_LIB="/usr/local/lib"		# directory for libraries
#DIR_INC="/usr/local/include"		# directory for include files
#DIR_MAN="/usr/local/man"		# directory for manual pages

#
# JPEG-specific parameters; used when JPEG support is enabled.
#
# 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/.
#
#DIRS_LIBINC="$DIRS_LIBINC ../jpeg"	# directory for JPEG include files
#LIBJPEG="-L ../jpeg -ljpeg"		# JPEG library to load

#
# Deflate-specific parameters; used when Deflate support is enabled.
#
# NB: Deflate support requires version 0.92 or later of the zlib
#     library written by Jean-loup Gailly and Mark Adler.  Starting
#     with about 0.95 the library is called libz.a (previously it was
#     libgz.a).  The library was last found at
#
#        ftp://ftp.uu.net/graphics/png/code/zlib-0.93.tar.gz
#
#     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

#
# Miscellaneous parameters.
#
#FILLORDER="MS2LSB"			# bit order of cpu (MSB2LSB/LSB2MSB)
#MANSCHEME="sysv-source-cat-strip"	# manual page installation scheme

#
# Parameters used when building the software.
#
# Note that configure has several ENVOPTS built into it that are
# set according to the target.  This is done to help naive folks.
#
# Beware of changing the INSTALL definition; you *must* have an
# install script that emulates the Silicon Graphics install program!
#
#AR="/bin/ar"				# pathname of suitable ar program
#AROPTS="rc"				# options to ar for creating archive
#CC="gcc"				# name/pathname of C compiler
#ENVOPTS="-Aa"				# options for getting ANSI C
#GCOPTS="-g"				# options to pass C compiler
#LIBPORT='${PORT}/libport.a'		# library with emulation code
#MACHDEPLIBS=""				# extra libraries for linking
#PORTFUNCS=""				# non-standard functions to emulate
#RANLIB=":"				# pathname of suitable ranlib program

#
# Dynamic Shared Object (DSO) support.
#
# Beware that adding new support for DSOs may require some
# modifications to the */Makefile.dso files.
#
#DSOSUF="so"				# DSO filename suffix
#DSOOPTS="-shared -rdata_shared"	# options for building DSOs

#
# Makefile construction parameters.
#
# These should not normally be set; configure will
# deduce the appropriate syntax to use for includes.
#
#SETMAKE='MAKE	= ${MAKE}'		# define if make does not setup $MAKE

#
# General system stuff used by the distribution.
#
#CHMOD="/etc/chmod"			# pathname of suitable chmod program
#INSTALL='${SHELL} ${PORT}/install.sh'	# SGI install program/emulator
#LN="/bin/ln"				# pathname of suitable ln program
#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
#STRIP="/bin/strip"			# strip program used by install.sh