summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index b573ee0f..f8b27384 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -12,10 +12,14 @@ function test_program {
fi
}
-for prog in autoconf automake libtool pkg-config gettext ; do
+for prog in autoconf automake libtool pkg-config ; do
test_program $prog
done
+if test $(uname -s) != "Darwin" ; then
+ test_program gettext
+ fi
+
test $test_program_errors -ne 1 || exit 1
#-------------------------------------------------------------------------------