diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2005-03-25 04:41:41 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2005-03-25 04:41:41 +0000 |
commit | 17998b22b59b393fe28c766e3bd72a0419f70041 (patch) | |
tree | 69b832401346b668037c811e96ccd1486e1163a8 /libiberty/configure | |
parent | bb99744fd4346bc283e19ecc2236f320a6901242 (diff) | |
download | gcc-17998b22b59b393fe28c766e3bd72a0419f70041.zip gcc-17998b22b59b393fe28c766e3bd72a0419f70041.tar.gz gcc-17998b22b59b393fe28c766e3bd72a0419f70041.tar.bz2 |
libiberty.h (xstrndup): Declare.
include:
* libiberty.h (xstrndup): Declare.
libiberty:
* Makefile.in (CFILES): Add strndup.c and xstrndup.c.
(REQUIRED_OFILES): Add xstrndup.o.
(CONFIGURED_OFILES): Add strndup.o.
Regenerate dependencies.
* configure.ac (funcs, AC_CHECK_FUNCS): Add strndup.
* strndup.c, xstrndup.c: New.
* config.in, configure, functions.texi: Regenerate.
From-SVN: r97034
Diffstat (limited to 'libiberty/configure')
-rwxr-xr-x | libiberty/configure | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libiberty/configure b/libiberty/configure index 9e238de..88da642 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -4775,6 +4775,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" @@ -4797,6 +4798,7 @@ funcs="$funcs strcasecmp" funcs="$funcs strchr" funcs="$funcs strdup" funcs="$funcs strncasecmp" +funcs="$funcs strndup" funcs="$funcs strrchr" funcs="$funcs strstr" funcs="$funcs strtod" @@ -4884,10 +4886,12 @@ if test "x" = "y"; then + + for ac_func in 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 \ + strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strndup strrchr strstr \ strtod strtol strtoul tmpnam vasprintf vfprintf vprintf \ vsprintf waitpid getrusage on_exit psignal strerror strsignal \ sysconf times sbrk gettimeofday ffs snprintf vsnprintf \ |