2546d3cf58
git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@623 185d5e19-27fe-0310-9dcf-9bff6b9f3609
22 lines
319 B
Bash
Executable file
22 lines
319 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
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-pam-oath \
|
|
--with-pamtest \
|
|
--with-su \
|
|
--with-modules-dir=/usr/lib \
|
|
--enable-developer-warnings \
|
|
--enable-werror \
|
|
"$@"
|