-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.conf
More file actions
133 lines (98 loc) · 2.48 KB
/
Copy pathMakefile.conf
File metadata and controls
133 lines (98 loc) · 2.48 KB
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
133
#
# $id$
#
# Makefile.conf.in
#
# Pattern file to be filled in by configure; contains specific options to
# build autofs.
#
# Do we build with -fpie?
DAEMON_CFLAGS = -fPIE
DAEMON_LDFLAGS = -pie
# Glibc < 2.17 requires librt for clock_gettime()
LIBCLOCK_GETTIME = -lrt
NSLLIB = -lnsl -ltirpc
NSLCFLAGS = -I/usr/include/tirpc
LIBRESOLV = -lresolv
SYSTEMD =
LIBSYSTEMD =
# Hesiod support: yes (1) no (0)
HESIOD = 0
LIBHESIOD =
HESIOD_FLAGS =
# LDAP support: yes (1) no (0)
LDAP = 0
LIBLDAP=
LDAP_FLAGS =
# sssd support
SSSD = 0
# SASL support: yes (1) no (0)
XML_LIBS = -lxml2
XML_CFLAGS = -I/usr/include/libxml2
SASL = 0
LIBSASL=
SASL_FLAGS =
KRB5_LIBS=
KRB5_FLAGS=
# NIS+ support: yes (1) no (0)
NISPLUS = 0
# SMBFS support: yes (1) no (0)
SMBFS = @HAVE_SMBMOUNT@
# YellowPages support: yes (1) no (0)
YPCLNT = 0
# Support for calling e2fsck when mounting ext2 filesystems
EXT2FS = 0
# Support for calling e3fsck when mounting ext3 filesystems
EXT3FS = 0
# Support for calling e4fsck when mounting ext4 filesystems
EXT4FS = 0
FEDFS =
LEX = /usr/bin/flex
YACC = /usr/bin/bison
RANLIB = /usr/bin/ranlib
# Use libtirpc if requested and available
TIRPCLIB =
TIRPCCFLAGS =
# Use dmalloc for memory debugging
DMALLOCLIB =
# Static build support
STATIC = 1
# Hardcoded master map path (bypasses NSS/SSS lookup)
# Since this starts with '/', automount reads it directly as a file,
# skipping all nsswitch sources (sss, nis, files) entirely.
MASTER_MAP = /etc/auto.master.d/cvmfs.autofs
#
# Note: the DESTDIR define is so you can build autofs into a temporary
# directory and still have all the compiled-in paths point to the right
# place.
#
# Common install prefix
prefix = /usr
exec_prefix = ${prefix}
# Shared library directory
sharedlibdir = ${exec_prefix}/lib
# SSS library module directory
ssslibdir=/usr/lib64/sssd/modules
# Directory for autofs modules
autofslibdir = ${exec_prefix}/lib/autofs
# Location for configuration init script
autofsconfdir = /etc/default
# Location for autofs maps
autofsmapdir = /etc
# Localtion of pid files
autofspiddir = /run
# Location for autofs fifos
autofsfifodir = /run
# Location for autofs flag file
autofsflagdir = /run
# Where to install the automount program
sbindir = ${exec_prefix}/sbin
# Where to install man pages
datarootdir = ${prefix}/share
mandir = ${datarootdir}/man
# Location for init.d files
initdir = /etc/init.d
# Location of systemd unit files
systemddir =
# Use the compiler determined by configure instead of hard-coded ones
CC := gcc