Changes by Bernie Bright to add getrusage() check.
This commit is contained in:
parent
e9a532357c
commit
1c7cf373ac
2 changed files with 5 additions and 1 deletions
|
@ -73,6 +73,9 @@
|
||||||
/* Define if your system has its own `getloadavg' function. */
|
/* Define if your system has its own `getloadavg' function. */
|
||||||
#undef HAVE_GETLOADAVG
|
#undef HAVE_GETLOADAVG
|
||||||
|
|
||||||
|
/* Define if you have getrusage() */
|
||||||
|
#undef HAVE_GETRUSAGE
|
||||||
|
|
||||||
/* Define if you have the getmntent function. */
|
/* Define if you have the getmntent function. */
|
||||||
#undef HAVE_GETMNTENT
|
#undef HAVE_GETMNTENT
|
||||||
|
|
||||||
|
|
|
@ -198,7 +198,7 @@ dnl Checks for library functions.
|
||||||
AC_TYPE_SIGNAL
|
AC_TYPE_SIGNAL
|
||||||
AC_FUNC_VPRINTF
|
AC_FUNC_VPRINTF
|
||||||
AC_CHECK_FUNCS( ftime gettimeofday mktime strstr rand random \
|
AC_CHECK_FUNCS( ftime gettimeofday mktime strstr rand random \
|
||||||
setitimer getitimer signal GetLocalTime rint )
|
setitimer getitimer signal GetLocalTime rint getrusage )
|
||||||
|
|
||||||
if test "x$ac_cv_lib_glut_glutGetModifiers" = "xno"; then
|
if test "x$ac_cv_lib_glut_glutGetModifiers" = "xno"; then
|
||||||
echo
|
echo
|
||||||
|
@ -220,6 +220,7 @@ AC_OUTPUT( \
|
||||||
Lib/Debug/Makefile \
|
Lib/Debug/Makefile \
|
||||||
Lib/DEM/Makefile \
|
Lib/DEM/Makefile \
|
||||||
Lib/Math/Makefile \
|
Lib/Math/Makefile \
|
||||||
|
Lib/Misc/Makefile \
|
||||||
Lib/PUI/Makefile \
|
Lib/PUI/Makefile \
|
||||||
Lib/XGL/Makefile \
|
Lib/XGL/Makefile \
|
||||||
Lib/zlib/Makefile \
|
Lib/zlib/Makefile \
|
||||||
|
|
Loading…
Reference in a new issue