~ubuntu-branches/debian/wheezy/autofs/wheezy

« back to all changes in this revision

Viewing changes to README.options

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2008-03-08 01:36:09 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080308013609-cvs4f2ecoyoism02
Tags: 4.1.4+debian-2.1
* Non-maintainer upload.
* High-urgency upload for RC bugfix.
* Add -DLDAP_DEPRECATED to CFLAGS, to fix compatibility with OpenLDAP
  2.4 on 64-bit architectures.  Closes: #463419.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-*- text -*-
 
2
 
 
3
ident $Id: README.options,v 1.2 2003/09/29 08:22:35 raven Exp $
 
4
 
 
5
The following options can be given to configure:
 
6
 
 
7
Install directory
 
8
-----------------
 
9
 
 
10
autofs usually installs in /usr, with the daemon in /usr/sbin, the man
 
11
pages in /usr/man, and the modules in /usr/lib/autofs.  You can change
 
12
the install root with the option
 
13
 
 
14
        --prefix=<root_prefix>
 
15
 
 
16
For example, to install autofs under /usr/local, please specify:
 
17
 
 
18
        ./configure --prefix=/usr/local
 
19
 
 
20
NOTICE TO DISTRIBUTORS: Don't use this option if you want to install
 
21
autofs in a temporary directory that isn't the final destination (for
 
22
example, if you are making an autofs package for a distribution.)
 
23
Instead, you can do
 
24
 
 
25
        make install INSTALLROOT=/tmp/install
 
26
 
 
27
... which will install all files relative to /tmp/install.
 
28
 
 
29
 
 
30
Location of system binaries
 
31
---------------------------
 
32
 
 
33
The autofs daemon uses several system utilities, including mount,
 
34
umount, e2fsck and smbmount to do its job.  "configure" will search
 
35
for these binaries and compile in the paths into the daemon and
 
36
modules as needed.
 
37
 
 
38
By default it searches the following directories, in order:
 
39
 
 
40
        /usr/bin:/bin:/usr/sbin:/sbin
 
41
 
 
42
Sometimes this search path isn't appropriate; i.e. it contains
 
43
binaries that shouldn't be used, or it doesn't contain all the needed
 
44
binaries.  If so, specify the
 
45
        
 
46
        --with-path=<PATH>
 
47
 
 
48
option, for example:
 
49
 
 
50
        ./configure --with-path=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
 
51
 
 
52
 
 
53
Hesiod support
 
54
--------------
 
55
 
 
56
To enable Hesiod support, if your Hesiod library isn't installed in
 
57
/usr/lib with the include files in /usr/include, please specify the
 
58
option:
 
59
 
 
60
        --with-hesiod=<hesiod_root>
 
61
 
 
62
For example, if your Hesiod library lives in /usr/athena/lib and the
 
63
include files in /usr/athena/include, please specify:
 
64
 
 
65
        ./configure --with-hesiod=/usr/athena
 
66
 
 
67
 
 
68
OpenLDAP support
 
69
----------------
 
70
 
 
71
To enable  support, if your OpenLDAP library isn't installed in
 
72
/usr/lib with the include files in /usr/include, please specify the
 
73
option:
 
74
 
 
75
        --with-openldap=<openldap_root>
 
76
 
 
77
For example, if your OpenLDAP library lives in /opt/openldap/lib and the
 
78
include files in /opt/openldap/include, please specify:
 
79
 
 
80
        ./configure --with-openldap=/opt/openldap
 
81
 
 
82