mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
configure.in: Don't use in-tree texinfo, because libiberty must be built before it.
* configure.in: Don't use in-tree texinfo, because libiberty must be built before it. Check for makeinfo version 4 or higher. * functions.texi: Regenerate. From-SVN: r45846
This commit is contained in:
parent
bed2ebd040
commit
ae9092da96
@ -1,3 +1,9 @@
|
|||||||
|
2001-09-27 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: Don't use in-tree texinfo, because libiberty must
|
||||||
|
be built before it. Check for makeinfo version 4 or higher.
|
||||||
|
* functions.texi: Regenerate.
|
||||||
|
|
||||||
2001-09-20 DJ Delorie <dj@redhat.com>
|
2001-09-20 DJ Delorie <dj@redhat.com>
|
||||||
Phil Edwards <pedwards@disaster.jaj.com>
|
Phil Edwards <pedwards@disaster.jaj.com>
|
||||||
|
|
||||||
|
@ -49,18 +49,19 @@ fi
|
|||||||
AC_SUBST(MAINT)dnl
|
AC_SUBST(MAINT)dnl
|
||||||
AC_SUBST(NOTMAINT)dnl
|
AC_SUBST(NOTMAINT)dnl
|
||||||
|
|
||||||
# Do we have a single-tree copy of texinfo?
|
# Do we have a single-tree copy of texinfo? Even if we do, we can't
|
||||||
if test -f $srcdir/../texinfo/Makefile.in; then
|
# rely on it - libiberty is built before texinfo.
|
||||||
MAKEINFO='$(objdir)/../texinfo/makeinfo/makeinfo'
|
AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
|
||||||
AC_MSG_RESULT([Using makeinfo from the unified source tree.])
|
BUILD_INFO=info
|
||||||
else
|
case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
|
||||||
AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
|
x*\ [[1-3]].* )
|
||||||
fi
|
MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required ;true"
|
||||||
if test x"$MAKEINFO" = x""; then
|
BUILD_INFO=
|
||||||
BUILD_INFO=
|
AC_MSG_WARN([
|
||||||
else
|
*** Makeinfo is too old. Info documentation will not be built.])
|
||||||
BUILD_INFO=info
|
;;
|
||||||
fi
|
esac
|
||||||
|
AC_SUBST(MAKEINFO)
|
||||||
AC_SUBST(BUILD_INFO)
|
AC_SUBST(BUILD_INFO)
|
||||||
|
|
||||||
AC_CHECK_PROG(PERL, perl, perl, )
|
AC_CHECK_PROG(PERL, perl, perl, )
|
||||||
|
@ -65,14 +65,14 @@ should be sorted in ascending order according to the @var{compar}
|
|||||||
comparison function. This routine should take two arguments pointing to
|
comparison function. This routine should take two arguments pointing to
|
||||||
the @var{key} and to an array member, in that order, and should return an
|
the @var{key} and to an array member, in that order, and should return an
|
||||||
integer less than, equal to, or greater than zero if the @var{key} object
|
integer less than, equal to, or greater than zero if the @var{key} object
|
||||||
is respecitively less than, matching, or greater than the array member.
|
is respectively less than, matching, or greater than the array member.
|
||||||
|
|
||||||
@end deftypefn
|
@end deftypefn
|
||||||
|
|
||||||
@c bzero.c:6
|
@c bzero.c:6
|
||||||
@deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
|
@deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
|
||||||
|
|
||||||
Zeros @var{count} bytes starting at @var{mem}. Use if this function
|
Zeros @var{count} bytes starting at @var{mem}. Use of this function
|
||||||
is deprecated in favor of @code{memset}.
|
is deprecated in favor of @code{memset}.
|
||||||
|
|
||||||
@end deftypefn
|
@end deftypefn
|
||||||
|
Loading…
Reference in New Issue
Block a user