xref: /freebsd/contrib/openpam/INSTALL (revision 8ab2f5ecc596131f6ca790d6ae35540c06ed7985)
1
2			  Installing OpenPAM
3			  ==================
4
51. REQUIREMENTS
6
7  See the release notes for a list of platforms OpenPAM has been
8  tested on.
9
10  You will need the GNU autotools, GNU make and the GNU compiler suite
11  to build OpenPAM.  On some platforms, you may have to install these
12  separately.
13
142. CONFIGURATION
15
16  Use the "configure" shell script to configure OpenPAM for your
17  system.  Options include:
18
19    --with-modules-dir=DIR
20	Indicates the directory where PAM modules will be installed.
21	This option should not be used if you intend to install PAM
22	modules in the system library directory.
23
24    --with-pam-su
25	Builds the sample PAM application.
26
27    --with-pam-unix
28	Builds the sample PAM module.
29
30  For more information about configuration options, use the --help
31  option.
32
33  A typical invocation might look like this:
34
35  # ./configure --with-pam-su --with-pam-unix
36
373. COMPILATION
38
39  To compile OpenPAM, simply run "make" (or "gmake" on platforms where
40  "make" is not GNU make) in the top-level OpenPAM directory:
41
42  # make
43
444. INSTALLATION
45
46  To install OpenPAM, simply run "make install" (or "gmake install" on
47  platforms where "make" is not GNU make) in the top-level OpenPAM
48  directory:
49
50  # make install
51
52$P4: //depot/projects/openpam/INSTALL#4 $
53