1#
2# Copyright (c) 1990 Jan-Simon Pendry
3# Copyright (c) 1990 Imperial College of Science, Technology & Medicine
4# Copyright (c) 1990 The Regents of the University of California.
5# All rights reserved.
6#
7# This code is derived from software contributed to Berkeley by
8# Jan-Simon Pendry at Imperial College, London.
9#
10# %sccs.include.redist.sh%
11#
12#	@(#)Makefile.config	5.4 (Berkeley) 05/20/91
13#
14# $Id: Makefile.config,v 5.2.1.6 91/05/07 22:20:27 jsp Alpha $
15#
16
17#
18# Comment/uncomment the following lines as required
19#
20
21#
22# Where local include files are stored
23#
24#XINCLUDE = -I/usr/local/athena/include
25
26#
27# Define RESOLV if your C library does not include support
28# for Hesiod and/or Named.
29#
30#RESOLV = -lhesiod -lresolv
31
32#
33# Define XLIBDIR if you have libraries not on the standard
34# search path.
35#
36#XLIBDIR = -L/usr/local/athena/lib
37
38#
39# Define DBM if your C library does not include
40# support for gdbm and/or ndbm.
41#
42#DBM = -lgdbm #-lndbm
43
44#
45# Define RPCLIB if your C library does not include
46# support for RPC
47#
48#RPCLIB = -lrpc
49
50#
51# Include support for Network Information Service (NIS)
52# Also define HAS_NIS_RELOAD to include map
53# enumeration code implementing "cache:=all"
54#
55HAS_NIS_MAPS = -DHAS_NIS_MAPS -DHAS_NIS_RELOAD
56
57#
58# Include support for file maps
59#
60HAS_FILE_MAPS = -DHAS_FILE_MAPS
61
62#
63# Include support for Hesiod
64# Also define HAS_HESIOD_RELOAD to include zone
65# transfer code implementing "cache:=all"
66#
67#HAS_HESIOD_MAPS = -DHAS_HESIOD_MAPS -DHAS_HESIOD_RELOAD
68
69#
70# Include support for /etc/passwd
71#
72HAS_PASSWD_MAPS = -DHAS_PASSWD_MAPS
73
74#
75# Include support for union maps
76#
77HAS_UNION_MAPS = -DHAS_UNION_MAPS
78
79#
80# Include support for ndbm.
81# This removes support for gdbm and is only supported
82# if your operating system supports ndbm
83#
84#HAS_NDBM_MAPS = -DHAS_NDBM_MAPS
85
86#
87# Include support for "regexp" maps
88#
89HAS_REGEXP = -DHAS_REGEXP
90
91#
92# Make sure that the hostname passed in RPC authentication packets
93# contains a fully qualified domain name.  See nfs_ops.c
94#
95#HAS_NFS_QUALIFIED_NAMES = -DHAS_NFS_QUALIFIED_NAMES
96
97##############################################################
98# Do NOT edit the following lines
99#
100CONFIG = ${XINCLUDE} ${HAS_NIS_MAPS} ${HAS_FILE_MAPS} ${HAS_HESIOD_MAPS} \
101		${HAS_NDBM_MAPS} ${HAS_MOUNTD_MAPS} ${HAS_PASSWD_MAPS} ${HAS_UNION_MAPS} \
102		${HAS_REGEXP} ${HAS_NFS_QUALIFIED_NAMES}
103