if test -n "$TEST"; then
VERS=`gcc --version 2>/dev/null | head -n 1`
infomsg "gcc : $VERS"
- # The elif will work in bourne shells, no other shells tested.
elif test -n "`gcc 2>&1 | tail -1 | awk '{print $1}'`"; then
VERS=`gcc --version 2>/dev/null | head -n 1`
infomsg "gcc : $VERS"
fi
}
+gitcommit_check()
+{
+ TEST=$(git | grep -v "not found" 2> /dev/null)
+ if test -n "$TEST"; then
+ VER=$(git rev-parse HEAD)
+ infomsg "git commit : $VER"
+ else
+ warningmsg "git commit : Not a git checkout"
+ fi
+}
+
gcrypt_check()
{
TEST=`$WHICH libgcrypt-config | grep -v "not found" 2> /dev/null`
gnunet09x_check
gnunet010x_check
gnunet011x_check
+ gitcommit_check
gcrypt_check
mysql_check
pkgconf_check