Blob Blame History Raw
#
# $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_FLAGS = @XML_FLAGS@
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 debuging
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@

# 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@