diff options
author | Jeffrey A Law <law@cygnus.com> | 1997-09-19 05:14:32 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-18 23:14:32 -0600 |
commit | 1e467e19b0508047b44226def6d157f8864c0dfc (patch) | |
tree | 6e27ddd3cf2c9e1f8b4b2956782100764dfef072 /gcc/config.in | |
parent | 335d0ab20834ed257a4d7e15ceb9b966fdafa8d3 (diff) | |
download | gcc-1e467e19b0508047b44226def6d157f8864c0dfc.zip gcc-1e467e19b0508047b44226def6d157f8864c0dfc.tar.gz gcc-1e467e19b0508047b44226def6d157f8864c0dfc.tar.bz2 |
configure.in (strtoul, bsearch): Have autoconf check for these functions.
* configure.in (strtoul, bsearch): Have autoconf check for these
functions.
* configure, config.in: Rebuilt.
So Fortran front end can use HAVE_STRTOUL and HAVE_BSEARCH.
From-SVN: r15560
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 8f7b1f2..318dadc 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -19,9 +19,15 @@ /* Define if `sys_siglist' is declared by <signal.h>. */ #undef SYS_SIGLIST_DECLARED +/* Define if you have the bsearch function. */ +#undef HAVE_BSEARCH + /* Define if you have the strerror function. */ #undef HAVE_STRERROR +/* Define if you have the strtoul function. */ +#undef HAVE_STRTOUL + /* Define if you have the <stddef.h> header file. */ #undef HAVE_STDDEF_H |