diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-10 00:57:10 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-10 00:57:10 +0000 |
commit | 5a24a79a9ed43d9154273567b60e88b694924c4f (patch) | |
tree | e1432758346a3d218242923db100c5546a76889e /libiberty/configure.ac | |
parent | b2026bdf67a3f498571a128bbb8a052c63b11866 (diff) | |
download | gcc-5a24a79a9ed43d9154273567b60e88b694924c4f.tar.gz |
* libiberty.h (gettimeofday): Declare.
* configure.ac (funcs): Add gettimeofday.
* configure: Regenerated.
* gettimeofday.c: New file.
* Makefile.in (CFILES): Add gettimeofday.
(CONFIGURED_OFILES): Add gettimeofday.o.
(./gettimeofday.o): New rule.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96230 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/configure.ac')
-rw-r--r-- | libiberty/configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 4637eec71d8..4d5361b89b6 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -225,6 +225,7 @@ funcs="$funcs clock" funcs="$funcs ffs" funcs="$funcs getcwd" funcs="$funcs getpagesize" +funcs="$funcs gettimeofday" funcs="$funcs index" funcs="$funcs insque" funcs="$funcs memchr" @@ -272,7 +273,7 @@ checkfuncs="$checkfuncs getsysinfo table sysctl" # autoheader happy without adding a bunch of text to acconfig.h. if test "x" = "y"; then AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock \ - getcwd getpagesize index insque mkstemps memchr memcmp memcpy \ + getcwd getpagesize gettimeofday index insque mkstemps memchr memcmp memcpy \ memmove mempcpy memset putenv random rename rindex sigsetmask \ strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strrchr strstr \ strtod strtol strtoul tmpnam vasprintf vfprintf vprintf \ |