grim/guifications3

1365e67470a8
file isExecutable
kill this branch since it still uses the old mtn rfqdn branch names and it's very out of date
#! /bin/sh
PACKAGE="gflib"
CONFIGURE_ARGS=""
if [ -f configure.args ] ; then
. configure.args
fi
(intltoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have intltool installed to compile $PACKAGE";
echo;
exit;
}
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have libtool installed to compile $PACKAGE";
echo;
exit;
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have automake installed to compile $PACKAGE";
echo;
exit;
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have autoconf installed to compile $PACKAGE";
echo;
exit;
}
(gtkdocize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "gtkdocize was not found! Disabling documentation.";
echo;
exit;
}
echo "Generating configuration files for $PACKAGE, please wait...."
libtoolize -c -f --automake || exit;
intltoolize -c -f --automake || exit;
gtkdocize --copy || exit;
aclocal || exit;
autoheader || exit;
automake -a -c || exit;
autoconf || exit;
automake || exit;
echo;
echo "Running ./configure ${CONFIGURE_ARGS} $@"
echo;
./configure ${CONFIGURE_ARGS} $@