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
|
#
# $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 = @DAEMON_CFLAGS@
DAEMON_LDFLAGS = @DAEMON_LDFLAGS@
# Glibc < 2.17 requires librt for clock_gettime()
LIBCLOCK_GETTIME = @LIBCLOCK_GETTIME@
NSLLIB = @NSL_LIBS@
NSLCFLAGS = @NSL_CFLAGS@
LIBRESOLV = @LIBRESOLV@
SYSTEMD = @WITH_SYSTEMD@
LIBSYSTEMD = @systemd_LIBS@
# Hesiod support: yes (1) no (0)
HESIOD = @HAVE_HESIOD@
LIBHESIOD = @LIBHESIOD@
HESIOD_FLAGS = @HESIOD_FLAGS@
# LDAP support: yes (1) no (0)
LDAP = @HAVE_LDAP@
LIBLDAP= @LIBLDAP@
LDAP_FLAGS = @LDAP_FLAGS@
# sssd support
SSSD = @HAVE_SSS_AUTOFS@
# SASL support: yes (1) no (0)
XML_LIBS = @XML_LIBS@
XML_CFLAGS = @XML_CFLAGS@
SASL = @HAVE_SASL@
LIBSASL= @LIBSASL@
SASL_FLAGS = @SASL_FLAGS@
KRB5_LIBS=@KRB5_LIBS@
KRB5_FLAGS=@KRB5_FLAGS@
# NIS+ support: yes (1) no (0)
NISPLUS = @HAVE_NISPLUS@
# SMBFS support: yes (1) no (0)
SMBFS = @HAVE_SMBMOUNT@
# YellowPages support: yes (1) no (0)
YPCLNT = @HAVE_YPCLNT@
# Support for calling e2fsck when mounting ext2 filesystems
EXT2FS = @HAVE_E2FSCK@
# Support for calling e3fsck when mounting ext3 filesystems
EXT3FS = @HAVE_E3FSCK@
# Support for calling e4fsck when mounting ext4 filesystems
EXT4FS = @HAVE_E4FSCK@
FEDFS = @ENABLE_FEDFS@
LEX = @PATH_LEX@
YACC = @PATH_YACC@
RPCGEN = @PATH_RPCGEN@
RANLIB = @PATH_RANLIB@
# Use libtirpc if requested and available
TIRPCLIB = @TIRPC_LIBS@
TIRPCCFLAGS = @TIRPC_CFLAGS@
# Use dmalloc for memory debugging
DMALLOCLIB = @DMALLOCLIB@
#
# 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 = @prefix@
exec_prefix = @exec_prefix@
# Shared library directory
sharedlibdir = @libdir@
# SSS library module directory
ssslibdir=@sssldir@
# Directory for autofs modules
autofslibdir = @libdir@/autofs
# Location for configuration init script
autofsconfdir = @confdir@
# Location for autofs maps
autofsmapdir = @mapdir@
# Localtion of pid files
autofspiddir = @piddir@
# Location for autofs fifos
autofsfifodir = @fifodir@
# Location for autofs flag file
autofsflagdir = @flagdir@
# Where to install the automount program
sbindir = @sbindir@
# Where to install man pages
datarootdir = @datarootdir@
mandir = @mandir@
# Location for init.d files
initdir = @initdir@
# Location of systemd unit files
systemddir = @systemddir@
# Use the compiler determined by configure instead of hard-coded ones
CC := @CC@
|