OpenPAM is an open source PAM library that focuses on simplicity, correctness, and cleanliness.
https://openpam.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
302 B
19 lines
302 B
#!/bin/sh |
|
|
|
set -ex |
|
|
|
. ./autogen.sh |
|
|
|
# autoconf prior to 2.62 has issues with zsh 4.2 and newer |
|
export CONFIG_SHELL=/bin/sh |
|
|
|
./configure \ |
|
--with-doc \ |
|
--with-pam-unix \ |
|
--with-pamtest \ |
|
--with-su \ |
|
--enable-debug \ |
|
--enable-developer-warnings \ |
|
--enable-werror \ |
|
--enable-code-coverage \ |
|
"$@"
|
|
|