1
1

Fix a call to AC_REPLACE_FUNC that we previously missed

This commit was SVN r5071.
Этот коммит содержится в:
Jeff Squyres 2005-03-28 20:51:42 +00:00
родитель 9d7ed5f7c0
Коммит 79f631b88a

Просмотреть файл

@ -269,7 +269,10 @@ if test "x$needsignal" = "xyes" ; then
sources="signal.c $sources"
fi
AC_REPLACE_FUNCS(err)
# OMPI: AC_REPLACE_FUNCS doesn't have much meaning here because it
# uses AC_LIBOBJ; use our own test
#AC_REPLACE_FUNCS(err)
AC_CHECK_FUNC(err, [], [sources="err.c $sources"])
AC_TYPE_PID_T
AC_TYPE_SIZE_T