Pour HAS_SELECT, verifier l'existence du type fd_set (PR#158)

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3268 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Xavier Leroy 2000-08-08 12:37:53 +00:00
parent c36622eccd
commit feefbdb04d
1 changed files with 10 additions and 7 deletions

17
configure vendored
View File

@ -602,16 +602,19 @@ if sh ./hasgot truncate ftruncate; then
echo "#define HAS_TRUNCATE" >> s.h
fi
has_select=no
if sh ./hasgot select; then
echo "select() found."
echo "#define HAS_SELECT" >> s.h
has_select=yes
fi
select_include=''
if sh ./hasgot -i sys/types.h -i sys/select.h; then
echo "sys/select.h found."
echo "#define HAS_SYS_SELECT_H" >> s.h
select_include='-i sys/select.h'
fi
has_select=no
if sh ./hasgot select && \
sh ./hasgot -i sys/types.h $select_include -t fd_set ; then
echo "select() found."
echo "#define HAS_SELECT" >> s.h
has_select=yes
fi
if sh ./hasgot symlink readlink lstat; then