Commit 90e72e20 by Andreas Schwab Committed by Jeff Law

configure.in (checkfuncs): Add gettimeofday.

        * configure.in (checkfuncs): Add gettimeofday.
        * config.in, configure: Regenerated.

From-SVN: r27647
parent 62133b5e
1999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* configure.in (checkfuncs): Add gettimeofday.
* config.in, configure: Regenerated.
Mon Jun 21 05:56:01 1999 Mumit Khan <khan@xraylith.wisc.edu> Mon Jun 21 05:56:01 1999 Mumit Khan <khan@xraylith.wisc.edu>
* configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if * configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if
......
...@@ -85,6 +85,9 @@ ...@@ -85,6 +85,9 @@
/* Define if you have the getrusage function. */ /* Define if you have the getrusage function. */
#undef HAVE_GETRUSAGE #undef HAVE_GETRUSAGE
/* Define if you have the gettimeofday function. */
#undef HAVE_GETTIMEOFDAY
/* Define if you have the index function. */ /* Define if you have the index function. */
#undef HAVE_INDEX #undef HAVE_INDEX
...@@ -115,6 +118,9 @@ ...@@ -115,6 +118,9 @@
/* Define if you have the psignal function. */ /* Define if you have the psignal function. */
#undef HAVE_PSIGNAL #undef HAVE_PSIGNAL
/* Define if you have the putenv function. */
#undef HAVE_PUTENV
/* Define if you have the random function. */ /* Define if you have the random function. */
#undef HAVE_RANDOM #undef HAVE_RANDOM
...@@ -127,6 +133,9 @@ ...@@ -127,6 +133,9 @@
/* Define if you have the sbrk function. */ /* Define if you have the sbrk function. */
#undef HAVE_SBRK #undef HAVE_SBRK
/* Define if you have the setenv function. */
#undef HAVE_SETENV
/* Define if you have the sigsetmask function. */ /* Define if you have the sigsetmask function. */
#undef HAVE_SIGSETMASK #undef HAVE_SIGSETMASK
...@@ -202,6 +211,9 @@ ...@@ -202,6 +211,9 @@
/* Define if you have the <sys/param.h> header file. */ /* Define if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H #undef HAVE_SYS_PARAM_H
/* Define if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
/* Define if you have the <sys/time.h> header file. */ /* Define if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H #undef HAVE_SYS_TIME_H
......
...@@ -1185,7 +1185,7 @@ funcs="$funcs waitpid" ...@@ -1185,7 +1185,7 @@ funcs="$funcs waitpid"
vars="sys_errlist sys_nerr sys_siglist" vars="sys_errlist sys_nerr sys_siglist"
checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk" checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
# These are neither executed nor required, but they help keep # These are neither executed nor required, but they help keep
# autoheader happy without adding a bunch of text to acconfig.h. # autoheader happy without adding a bunch of text to acconfig.h.
...@@ -1532,7 +1532,7 @@ else ...@@ -1532,7 +1532,7 @@ else
fi fi
done done
for ac_func in sbrk for ac_func in sbrk gettimeofday
do do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:1539: checking for $ac_func" >&5 echo "configure:1539: checking for $ac_func" >&5
......
...@@ -156,7 +156,7 @@ funcs="$funcs waitpid" ...@@ -156,7 +156,7 @@ funcs="$funcs waitpid"
vars="sys_errlist sys_nerr sys_siglist" vars="sys_errlist sys_nerr sys_siglist"
checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk" checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
# These are neither executed nor required, but they help keep # These are neither executed nor required, but they help keep
# autoheader happy without adding a bunch of text to acconfig.h. # autoheader happy without adding a bunch of text to acconfig.h.
...@@ -170,7 +170,7 @@ if test "x" = "y"; then ...@@ -170,7 +170,7 @@ if test "x" = "y"; then
AC_DEFINE(HAVE_SYS_NERR) AC_DEFINE(HAVE_SYS_NERR)
AC_DEFINE(HAVE_SYS_SIGLIST) AC_DEFINE(HAVE_SYS_SIGLIST)
AC_CHECK_FUNCS(getrusage on_exit psignal strerror strsignal sysconf times) AC_CHECK_FUNCS(getrusage on_exit psignal strerror strsignal sysconf times)
AC_CHECK_FUNCS(sbrk) AC_CHECK_FUNCS(sbrk gettimeofday)
fi fi
# For each of these functions, if the host does not provide the # For each of these functions, if the host does not provide the
......
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