Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f749bd83
Commit
f749bd83
authored
Nov 04, 2001
by
Alan Modra
Committed by
Alan Modra
Nov 04, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in: Cope with missing makeinfo.
From-SVN: r46767
parent
e9818db2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
libiberty/ChangeLog
+4
-0
libiberty/configure
+0
-0
libiberty/configure.in
+12
-7
No files found.
libiberty/ChangeLog
View file @
f749bd83
2001-11-03 Alan Modra <amodra@bigpond.net.au>
* configure.in: Cope with missing makeinfo.
2001-10-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* hex.c (hex_init): Provide empty stub.
...
...
libiberty/configure
View file @
f749bd83
This diff is collapsed.
Click to expand it.
libiberty/configure.in
View file @
f749bd83
...
...
@@ -52,15 +52,20 @@ AC_SUBST(NOTMAINT)dnl
# Do we have a single-tree copy of texinfo? Even if we do, we can't
# rely on it - libiberty is built before texinfo.
AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
BUILD_INFO=info
case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
x*\ [[1-3]].* )
MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required ;true"
if test "x$MAKEINFO" = "x"; then
MAKEINFO="@echo makeinfo missing; true"
BUILD_INFO=
AC_MSG_WARN([
else
BUILD_INFO=info
case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
x*\ [[1-3]].* )
MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true"
BUILD_INFO=
AC_MSG_WARN([
*** Makeinfo is too old. Info documentation will not be built.])
;;
esac
;;
esac
fi
AC_SUBST(MAKEINFO)
AC_SUBST(BUILD_INFO)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment