diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-20 23:06:55 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-20 23:06:55 +0000 |
commit | c770a4cb18fc568996793f21fd7f94cee29520a0 (patch) | |
tree | 268f0c06395f32d39f714beb25ba66ed7a3f3b8c /gcc/config.in | |
parent | 6b6f8d4d313fdcbfceffaafccbcd3b1ad8abc06b (diff) | |
download | gcc-c770a4cb18fc568996793f21fd7f94cee29520a0.tar.gz |
* configure.in: Probe for times, clock, struct tms, and clock_t.
* configure, config.in: Regenerate.
* timevar.c: Replace ifdef forest in get_time with (relatively)
straightforward series of checks based on autoconf's probes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41471 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 4d03b5b031e..72ede3d78f3 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -101,6 +101,9 @@ /* Define if you have the bsearch function. */ #undef HAVE_BSEARCH +/* Define if you have the clock function. */ +#undef HAVE_CLOCK + /* Define if you have the dcgettext function. */ #undef HAVE_DCGETTEXT @@ -188,6 +191,9 @@ /* Define if you have the sysconf function. */ #undef HAVE_SYSCONF +/* Define if you have the times function. */ +#undef HAVE_TIMES + /* Define if you have the <argz.h> header file. */ #undef HAVE_ARGZ_H @@ -417,6 +423,9 @@ #undef HAVE_DECL_GETOPT /* Define to 1 if we found this declaration otherwise define to 0. */ +#undef HAVE_DECL_CLOCK + +/* Define to 1 if we found this declaration otherwise define to 0. */ #undef HAVE_DECL_GETRLIMIT /* Define to 1 if we found this declaration otherwise define to 0. */ @@ -425,6 +434,15 @@ /* Define to 1 if we found this declaration otherwise define to 0. */ #undef HAVE_DECL_GETRUSAGE +/* Define to 1 if we found this declaration otherwise define to 0. */ +#undef HAVE_DECL_TIMES + +/* Define if <sys/times.h> defines struct tms. */ +#undef HAVE_STRUCT_TMS + +/* Define if <time.h> defines clock_t. */ +#undef HAVE_CLOCK_T + /* Define if host mkdir takes a single argument. */ #undef MKDIR_TAKES_ONE_ARG |