Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Developer Documentation

Kawakami edited this page Dec 10, 2018 · 6 revisions

Compiling

  1. Fetch source code:
git clone https://github.com/linux-pam/linux-pam.git ~/linux-pam

cd ~/linux-pam/modules

git clone https://github.com/CyberNinjas/pam_useradd.git pam_useradd

cd pam_useradd

git checkout feature-complete-rewrite
  1. Configure:
  • Add modules/pam_useradd/Makefile, to AC_CONFIG_FILES in configure.ac

  • Add pam_useradd, to SUBDIRS in modules/Makefile.am

./autogen.sh
./configure --disable-regenerate-docu --disable-nls # disable XML documentation or international language support
  1. Compile:
make

make check

make distcheck
Clone this wiki locally