blob: 8aafed35fa65047668c3e5121b374a07bc13a565 (
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
|
# $NetBSD: config.site,v 1.8 2001/06/18 21:32:24 jlam Exp $
DIR_BIN=${PREFIX}/bin # destination for applications
DIR_LIB=${PREFIX}/lib # destination for library
DIR_INC=${PREFIX}/include # destination for include files
DIR_MAN=${PREFIX}/man # destination for man pages
DIR_HTML=${PREFIX}/share/doc/html/tiff # destination for html documentation
DIRS_LIBINC=${BUILDLINK_DIR}/include # dirs to search for ancillary includes
# JPEG support
#
JPEG=yes
DIR_JPEGLIB=${BUILDLINK_DIR}/lib
LIBJPEG="${LDFLAGS} -ljpeg"
# ZLIB compression support
#
ZIP=yes
DIR_GZLIB=${BUILDLINK_DIR}/lib
LIBGZ="${LDFLAGS} -lz"
DSO=no # don't use libtiff's shared lib mechanism
INSTALL=
LIBGL=no # don't build SGI -lgl apps
LIBIMAGE=no # don't build SGI -limage apps
HTML=yes # build HTML documentation
MANSCHEME=bsd-source-cat-strip
|