diff options
author | Nikki VonHollen <vonhollen@google.com> | 2011-12-20 15:11:23 -0800 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2011-12-22 17:59:33 -0500 |
commit | 674357c20c1b6cb421fea6eb6924b274ec477c0e (patch) | |
tree | f434c0d7f0e0d5d932ce6e8b27fad31005b92d5f /autogen.sh | |
parent | 15d2e90a54009efb31300d8b59292d71ce98a5b2 (diff) |
Bug 43610 - Add netgroup support
https://bugs.freedesktop.org/show_bug.cgi?id=43610
Added netgroup support and additional unit tests with MockLibc support.
Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -57,6 +57,16 @@ test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { DIE=1 } + +# if no automake, don't bother testing for autoreconf +test -n "$NO_AUTOMAKE" || (autoreconf --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have autoreconf installed." + echo "You can get autoreconf from ..." + DIE=1 +} + + if test "$DIE" -eq 1; then exit 1 fi @@ -75,6 +85,9 @@ esac aclocalinclude="$ACLOCAL_FLAGS" + echo "Running autoreconf on test/mocklibc ..." + (cd "test/mocklibc"; autoreconf --install) + if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." |