[Orca-checkins] r517 - orca/trunk
blair at orcaware.com
blair at orcaware.com
Sat Dec 10 11:18:54 PST 2005
Author: blair at orcaware.com
Date: Sat Dec 10 11:18:25 2005
New Revision: 517
Modified:
orca/trunk/autogen.sh
Log:
In Debian based distributions, aclocal is packaged separately from
autoconf, so add a check for aclocal.
* autogen.sh:
Check that aclocal can be found.
The name or the path to aclocal can be specified by the ACLOCAL
environmental variable.
Modified: orca/trunk/autogen.sh
==============================================================================
--- orca/trunk/autogen.sh (original)
+++ orca/trunk/autogen.sh Sat Dec 10 11:18:25 2005
@@ -19,6 +19,16 @@
echo "$0: autoconf version $ac_version (ok)"
fi
+# Check for aclocal.
+${ACLOCAL:-aclocal} --version >/dev/null 2>&1
+if test $? -ne 0; then
+ echo "$0: aclocal not found."
+ echo " You need aclocal installed to build Orca from Subversion."
+ exit 1
+else
+ echo "$0: aclocal found"
+fi
+
# The Orca Subversion repository contains RRDtool, which has its own
# automake, autoconf and libtool setup. When checking out Orca from
# Subversion, it does not preserve the relative timestamps of the
More information about the Orca-checkins
mailing list