Commit e63c1d35 by Richard Stallman

(ansi_compat.h): Replace this with an empty file.

From-SVN: r1883
parent 31bcbccb
......@@ -737,6 +737,14 @@ if [ -r ${LIB}/$file ]; then
fi
fi
# Cancel out ansi_compat.h on Ultrix. Replace it with empty file.
file=ansi_compat.h
if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
if grep -s ULTRIX $file; then
echo "/* This file intentionally left blank. */" > $LIB/$file
fi
fi
# parameter to atof not const on DECstation Ultrix V4.0.
file=math.h
if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment