191094Sdes
291094Sdes			  Installing OpenPAM
391094Sdes			  ==================
491094Sdes
591094Sdes1. REQUIREMENTS
691094Sdes
7117610Sdes  See the release notes for a list of platforms OpenPAM has been
8117610Sdes  tested on.
991094Sdes
10117610Sdes  You will need the GNU autotools, GNU make and the GNU compiler suite
11117610Sdes  to build OpenPAM.  On some platforms, you may have to install these
12117610Sdes  separately.
13117610Sdes
1491094Sdes2. CONFIGURATION
1591094Sdes
16117610Sdes  Use the "configure" shell script to configure OpenPAM for your
17117610Sdes  system.  Options include:
1891094Sdes
19174832Sdes    --enable-debug
20174832Sdes	Turn debugging on by default.
21174832Sdes
22117610Sdes    --with-modules-dir=DIR
23117610Sdes	Indicates the directory where PAM modules will be installed.
24117610Sdes	This option should not be used if you intend to install PAM
25117610Sdes	modules in the system library directory.
26117610Sdes
27174832Sdes    --without-doc
28174832Sdes	Skips the documentation.
29117610Sdes
30117610Sdes    --with-pam-unix
31117610Sdes	Builds the sample PAM module.
32117610Sdes
33174832Sdes    --with-su
34174832Sdes	Builds the sample su(1) implementation.
35174832Sdes
36117610Sdes  For more information about configuration options, use the --help
37117610Sdes  option.
38117610Sdes
39117610Sdes  A typical invocation might look like this:
40117610Sdes
41174832Sdes  # ./configure --with-pam-unix --with-su
42117610Sdes
4391094Sdes3. COMPILATION
4491094Sdes
45117610Sdes  To compile OpenPAM, simply run "make" (or "gmake" on platforms where
46117610Sdes  "make" is not GNU make) in the top-level OpenPAM directory:
4791094Sdes
48117610Sdes  # make
49117610Sdes
5091094Sdes4. INSTALLATION
5191094Sdes
52117610Sdes  To install OpenPAM, simply run "make install" (or "gmake install" on
53117610Sdes  platforms where "make" is not GNU make) in the top-level OpenPAM
54117610Sdes  directory:
55117610Sdes
56117610Sdes  # make install
57117610Sdes
58263421Sdes$Id: INSTALL 648 2013-03-05 17:54:27Z des $
59