3 (libtoolize
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
5 echo "You must have libtool installed to compile LibGNT";
10 (automake
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
12 echo "You must have automake installed to compile LibGNT";
17 (autoconf
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
19 echo "You must have autoconf installed to compile LibGNT";
24 echo "Generating configuration files for LibGNT, please wait...."
27 echo "Running libtoolize, please ignore non-fatal messages...."
28 echo n | libtoolize
--copy --force ||
exit;
30 # Add other directories to this list if people continue to experience
31 # brokennesses ... Obviously the real answer is for them to fix it
32 # themselves, but for Luke's sake we have this.
33 for dir
in "/usr/local/share/aclocal" \
34 "/opt/gnome-1.4/share/aclocal"
36 if test -d $dir ; then
37 ACLOCAL_FLAGS
="$ACLOCAL_FLAGS -I $dir"
41 libtoolize
-c -f --automake
42 aclocal
$ACLOCAL_FLAGS ||
exit;
44 automake
--add-missing --copy;