Mark Corbin <mark@dibsco.co.uk> 20th March 2014

The host dependencies check incorrectly reports that 'glibc-devel'
is not installed on some 64 bit systems because it is looking for libz
instead of libm.

--- bin/Ltibutils.pm	2013-06-22 15:50:13.000000000 +0100
+++ bin/Ltibutils.pm.modified	2014-03-20 13:43:03.167386736 +0000
@@ -580,7 +580,7 @@
     'gcc-c++'        => 'g++ --version 2>/dev/null',
     glibc            => 'ldd --version 2>/dev/null',
     'glibc-devel'    => sub { -f '/usr/lib/libm.so' 
-                           || -f '/usr/lib64/libz.so'
+                           || -f '/usr/lib64/libm.so'
                            || -f '/usr/lib/i386-linux-gnu/libm.so'
                            || -f '/usr/lib/x86_64-linux-gnu/libm.so'
                        },
