Description: fix problem with multiarch libc
--- spim-8.0+dfsg.orig/spim/Configure
+++ spim-8.0+dfsg/spim/Configure
@@ -182,7 +182,7 @@
 
 echo
 echo Checking for /usr/include/termios.h
-if [ -f /usr/include/termios.h ]; then
+if echo '#include <termios.h>' | $CC -E - >/dev/null 2>&1; then
   echo "-DUSE_TERMIOS" >> ./configuration
   echo "Yes, it is there"
 else
--- spim-8.0+dfsg.orig/xspim/Configure
+++ spim-8.0+dfsg/xspim/Configure
@@ -171,7 +171,7 @@
 
 echo
 echo Checking for /usr/include/termios.h
-if [ -f /usr/include/termios.h ]; then
+if echo '#include <termios.h>' | $CC -E - >/dev/null 2>&1; then
   echo "-DUSE_TERMIOS" >> ./configuration
   echo "Yes, it is there"
 else
