diff options
author | H. Peter Anvin <hpa@zytor.com> | 1998-03-29 10:26:20 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 1998-03-29 10:26:20 +0000 |
commit | e1dbb9fe60aa8bf48b07ce2896838f76cc98e226 (patch) | |
tree | 87f278ba5cb3d2738aa2061a17a01a18474dfe7e /Makefile.conf.in | |
parent | 43d9d88fd0160c7beecba8b78227cc7247e8d6e9 (diff) | |
download | autofs3-e1dbb9fe60aa8bf48b07ce2896838f76cc98e226.tar.gz autofs3-e1dbb9fe60aa8bf48b07ce2896838f76cc98e226.tar.xz autofs3-e1dbb9fe60aa8bf48b07ce2896838f76cc98e226.zip |
Make autofs self-configuring (using autoconf)
Diffstat (limited to 'Makefile.conf.in')
-rw-r--r-- | Makefile.conf.in | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Makefile.conf.in b/Makefile.conf.in new file mode 100644 index 0000000..a6f927a --- /dev/null +++ b/Makefile.conf.in @@ -0,0 +1,44 @@ +# -*- makefile -*- +# +# Makefile.conf.in +# +# Pattern file to be filled in by configure; contains specific options to +# build autofs. +# + +# Special parameters for glibc (libc 6) +LIBNSL = @LIBNSL@ +LIBRESOLV = @LIBRESOLV@ + +# Hesiod support: yes (1) no (0) +HESIOD = @HAVE_HESIOD@ +HESIOD_LIBS = @LIBHESIOD@ +HESIOD_FLAGS = @HESIOD_FLAGS@ + +# NIS+ support: yes (1) no (0) +NISPLUS = @HAVE_NISPLUS@ + +# SMBFS support: yes (1) no (0) +SMBFS = @HAVE_SMBMOUNT@ + +# Support for calling e2fsck when mounting ext2 filesystems +EXT2FS = @HAVE_E2FSCK@ + +# +# 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@ + +# Directory for autofs modules +autofslibdir = @libdir@/autofs + +# Where to install the automount program +sbindir = @sbindir@ + +# Where to install man pages +mandir = @mandir@ |