diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-03-26 10:30:41 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-26 03:30:41 -0700 |
commit | 00459c3ad18896794b3f5939123e6f48b2a4579f (patch) | |
tree | 0a565b539dbbe754af10ed991ee24ba9f5cbfed6 /texinfo/configure.in | |
parent | 734e8cc58d21461977376ab50dbe4bb7fb845dbc (diff) | |
download | gcc-00459c3ad18896794b3f5939123e6f48b2a4579f.zip gcc-00459c3ad18896794b3f5939123e6f48b2a4579f.tar.gz gcc-00459c3ad18896794b3f5939123e6f48b2a4579f.tar.bz2 |
acinclude.m4: Bring back changes lost during merge.
* acinclude.m4: Bring back changes lost during merge.
(mostly Cygwin, automake and EGCS_PROG_INSTALL stuff).
* aclocal.m4: Likewise.
* configure.in: Likewise.
From-SVN: r18840
Diffstat (limited to 'texinfo/configure.in')
-rw-r--r-- | texinfo/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/texinfo/configure.in b/texinfo/configure.in index c6740ae..c9bf5e8 100644 --- a/texinfo/configure.in +++ b/texinfo/configure.in @@ -61,7 +61,9 @@ AC_STRUCT_TM dnl Checks for library functions. AC_FUNC_ALLOCA AC_FUNC_VPRINTF -AC_FUNC_SETVBUF_REVERSED +if test "$ac_cv_c_cross" = no; then + AC_FUNC_SETVBUF_REVERSED +fi AC_CHECK_FUNCS(setvbuf getcwd memset bzero strchr strcasecmp \ sigprocmask sigsetmask) dnl strcasecmp, strerror, xmalloc, xrealloc, probably others should be added. |