2007-06-03 20:26:18 +00:00
|
|
|
#!/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 \
|
2011-11-02 23:42:51 +00:00
|
|
|
--with-pamtest \
|
2007-06-03 20:26:18 +00:00
|
|
|
--with-su \
|
2011-11-02 15:04:31 +00:00
|
|
|
--with-modules-dir=/usr/lib \
|
2007-06-03 20:26:18 +00:00
|
|
|
--enable-developer-warnings \
|
|
|
|
--enable-werror \
|
|
|
|
"$@"
|