Blame Makefile.conf.in

Packit 8480eb
#
Packit 8480eb
# $id$
Packit 8480eb
#
Packit 8480eb
# Makefile.conf.in
Packit 8480eb
#
Packit 8480eb
# Pattern file to be filled in by configure; contains specific options to
Packit 8480eb
# build autofs.
Packit 8480eb
#
Packit 8480eb
Packit 8480eb
# Do we build with -fpie?
Packit 8480eb
DAEMON_CFLAGS  = @DAEMON_CFLAGS@
Packit 8480eb
DAEMON_LDFLAGS = @DAEMON_LDFLAGS@
Packit 8480eb
Packit 8480eb
# Glibc < 2.17 requires librt for clock_gettime()
Packit 8480eb
LIBCLOCK_GETTIME = @LIBCLOCK_GETTIME@
Packit 8480eb
Packit Service bf433d
NSLLIB    = @NSL_LIBS@
Packit Service bf433d
NSLCFLAGS = @NSL_CFLAGS@
Packit 8480eb
LIBRESOLV = @LIBRESOLV@
Packit 8480eb
Packit Service a90fd9
SYSTEMD = @WITH_SYSTEMD@
Packit Service a90fd9
LIBSYSTEMD = @systemd_LIBS@
Packit Service a90fd9
Packit 8480eb
# Hesiod support: yes (1) no (0)
Packit 8480eb
HESIOD = @HAVE_HESIOD@
Packit 8480eb
LIBHESIOD = @LIBHESIOD@
Packit 8480eb
HESIOD_FLAGS = @HESIOD_FLAGS@
Packit 8480eb
Packit 8480eb
# LDAP support: yes (1) no (0)
Packit 8480eb
LDAP = @HAVE_LDAP@
Packit 8480eb
LIBLDAP= @LIBLDAP@
Packit 8480eb
LDAP_FLAGS = @LDAP_FLAGS@
Packit 8480eb
Packit 8480eb
# sssd support
Packit 8480eb
SSSD = @HAVE_SSS_AUTOFS@
Packit 8480eb
Packit 8480eb
# SASL support: yes (1) no (0)
Packit 8480eb
XML_LIBS = @XML_LIBS@
Packit 8480eb
XML_FLAGS = @XML_FLAGS@
Packit 8480eb
SASL = @HAVE_SASL@
Packit 8480eb
LIBSASL= @LIBSASL@
Packit 8480eb
SASL_FLAGS = @SASL_FLAGS@
Packit 8480eb
KRB5_LIBS=@KRB5_LIBS@
Packit 8480eb
KRB5_FLAGS=@KRB5_FLAGS@
Packit 8480eb
Packit 8480eb
# NIS+ support: yes (1) no (0)
Packit 8480eb
NISPLUS = @HAVE_NISPLUS@
Packit 8480eb
Packit 8480eb
# SMBFS support: yes (1) no (0)
Packit 8480eb
SMBFS = @HAVE_SMBMOUNT@
Packit 8480eb
Packit 8480eb
# YellowPages support: yes (1) no (0)
Packit 8480eb
YPCLNT = @HAVE_YPCLNT@
Packit 8480eb
Packit 8480eb
# Support for calling e2fsck when mounting ext2 filesystems
Packit 8480eb
EXT2FS = @HAVE_E2FSCK@
Packit 8480eb
Packit 8480eb
# Support for calling e3fsck when mounting ext3 filesystems
Packit 8480eb
EXT3FS = @HAVE_E3FSCK@
Packit 8480eb
Packit 8480eb
# Support for calling e4fsck when mounting ext4 filesystems
Packit 8480eb
EXT4FS = @HAVE_E4FSCK@
Packit 8480eb
Packit Service 514be3
FEDFS = @ENABLE_FEDFS@
Packit Service 514be3
Packit 8480eb
LEX = @PATH_LEX@
Packit 8480eb
YACC = @PATH_YACC@
Packit 8480eb
RPCGEN = @PATH_RPCGEN@
Packit 8480eb
RANLIB = @PATH_RANLIB@
Packit 8480eb
Packit 8480eb
# Use libtirpc if requested and available
Packit 8480eb
TIRPCLIB = @TIRPC_LIBS@
Packit 8480eb
TIRPCCFLAGS = @TIRPC_CFLAGS@
Packit 8480eb
Packit 8480eb
# Use dmalloc for memory debuging
Packit 8480eb
DMALLOCLIB = @DMALLOCLIB@
Packit 8480eb
Packit 8480eb
#
Packit 8480eb
# Note: the DESTDIR define is so you can build autofs into a temporary
Packit 8480eb
# directory and still have all the compiled-in paths point to the right
Packit 8480eb
# place.
Packit 8480eb
#
Packit 8480eb
Packit 8480eb
# Common install prefix
Packit 8480eb
prefix = @prefix@
Packit 8480eb
exec_prefix = @exec_prefix@
Packit 8480eb
Packit 8480eb
# SSS library module directory
Packit 8480eb
ssslibdir=@sssldir@
Packit 8480eb
Packit 8480eb
# Directory for autofs modules
Packit 8480eb
autofslibdir = @libdir@/autofs
Packit 8480eb
Packit 8480eb
# Location for configuration init script
Packit 8480eb
autofsconfdir = @confdir@
Packit 8480eb
Packit 8480eb
# Location for autofs maps
Packit 8480eb
autofsmapdir = @mapdir@
Packit 8480eb
Packit 8480eb
# Localtion of pid files
Packit 8480eb
autofspiddir = @piddir@
Packit 8480eb
Packit 8480eb
# Location for autofs fifos
Packit 8480eb
autofsfifodir = @fifodir@
Packit 8480eb
Packit 8480eb
# Location for autofs flag file
Packit 8480eb
autofsflagdir = @flagdir@
Packit 8480eb
Packit 8480eb
# Where to install the automount program
Packit 8480eb
sbindir = @sbindir@
Packit 8480eb
Packit 8480eb
# Where to install man pages
Packit 8480eb
datarootdir = @datarootdir@
Packit 8480eb
mandir = @mandir@
Packit 8480eb
Packit 8480eb
# Location for init.d files
Packit 8480eb
initdir = @initdir@
Packit 8480eb
Packit 8480eb
# Location of systemd unit files
Packit 8480eb
systemddir = @systemddir@
Packit 8480eb
Packit 8480eb
# Use the compiler determined by configure instead of hard-coded ones
Packit 8480eb
CC := @CC@