summaryrefslogtreecommitdiffstats
path: root/testincl
diff options
context:
space:
mode:
Diffstat (limited to 'testincl')
-rwxr-xr-xtestincl31
1 files changed, 0 insertions, 31 deletions
diff --git a/testincl b/testincl
deleted file mode 100755
index e1f9bb450..000000000
--- a/testincl
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-#
-# call:
-# COMPILE=...; export COMPILE
-# if ./testincl [-q] "foo.h" ...
-#
-echo=echo
-case $1 in -q)
- echo=":"
- shift
- ;;
-esac
-IFILE="<$1>"
-
-echo "
-#include $IFILE
-main(){ exit(0); }
-" > conftest.c
-eval $COMPILE
-# Brian Murphy asks not to run conftest since that fails on cross-compilation.
-# Maybe just testing for the existence of conftest suffices.
-# if test -s conftest && ./conftest 2>/dev/null; then
-if test -s conftest 2>/dev/null; then
- res=0
- $echo "You have $IFILE"
-else
- res=1
- $echo "You don't have $IFILE"
-fi
-rm -f conftest conftest.c
-exit $res