Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frédéric Karamé
dynare
Commits
1607db3c
Commit
1607db3c
authored
7 years ago
by
Sébastien Villemot
Browse files
Options
Downloads
Patches
Plain Diff
Drop texi2html requirement (obsolete software), use texi2any instead.
(cherry picked from commit
1270f124
)
parent
468815e8
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+3
-3
3 additions, 3 deletions
README.md
configure.ac
+2
-5
2 additions, 5 deletions
configure.ac
doc/Makefile.am
+1
-4
1 addition, 4 deletions
doc/Makefile.am
with
6 additions
and
12 deletions
README.md
+
3
−
3
View file @
1607db3c
...
...
@@ -81,7 +81,7 @@ A number of tools and libraries are needed in order to recompile everything. You
-
[
Beamer
](
http://latex-beamer.sourceforge.net/
)
(
for
some PDF presentations)
-
For building the reference manual:
-
[
GNU Texinfo
](
http://www.gnu.org/software/texinfo/
)
-
[
Texi2HTML
](
http://www.nongnu.org/texi2html
)
and
[
Latex2HTML
](
http://www.latex2html.org
)
, if you want nice mathematical formulas in HTML output
-
[
Latex2HTML
](
http://www.latex2html.org
)
, if you want nice mathematical formulas in HTML output
-
[
Doxygen
](
http://www.stack.nl/%7Edimitri/doxygen/
)
(
if
you want to build Dynare preprocessor source documentation)
-
For Octave, the development libraries corresponding to the UMFPACK packaged with Octave
...
...
@@ -237,7 +237,7 @@ Alternatively, if you want to build everything, manually install the following p
-
`texlive-fonts-extra`
(for ccicons)
-
`latex-beamer`
-
`texinfo`
-
`texi2html`
,
`latex2html`
-
`latex2html`
-
`doxygen`
## Fedora
...
...
@@ -253,7 +253,7 @@ Alternatively, if you want to build everything, manually install the following p
-
`automake`
-
`texlive`
-
`texinfo`
-
`texi2html`
,
`latex2html`
-
`latex2html`
-
`doxygen`
## Windows
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
5
View file @
1607db3c
...
...
@@ -113,9 +113,6 @@ AM_CONDITIONAL([HAVE_PDFLATEX], [test "x$PDFLATEX" != "x"])
AC_CHECK_PROG([BIBTEX], [bibtex], [bibtex])
AM_CONDITIONAL([HAVE_BIBTEX], [test "x$BIBTEX" != "x"])
AC_CHECK_PROG([TEXI2HTML], [texi2html], [texi2html])
AM_CONDITIONAL([HAVE_TEXI2HTML], [test "x$TEXI2HTML" != "x"])
AC_CHECK_PROG([LATEX2HTML], [latex2html], [latex2html])
AM_CONDITIONAL([HAVE_LATEX2HTML], [test "x$LATEX2HTML" != "x"])
...
...
@@ -274,10 +271,10 @@ fi
if test "x$MAKEINFO" != "x"; then
BUILD_DYNARE_INFO="yes"
if test
"x$TEXI2HTML" != "x" -a
"x$LATEX2HTML" != "x"; then
if test "x$LATEX2HTML" != "x"; then
BUILD_DYNARE_HTML_MANUAL="yes"
else
BUILD_DYNARE_HTML_MANUAL="yes (but with ugly math formulas, missing
texi2html or
latex2html)"
BUILD_DYNARE_HTML_MANUAL="yes (but with ugly math formulas, missing latex2html)"
fi
BUILD_DYNARE_PDF_MANUAL="yes"
else
...
...
This diff is collapsed.
Click to expand it.
doc/Makefile.am
+
1
−
4
View file @
1607db3c
...
...
@@ -2,15 +2,12 @@ SUBDIRS = preprocessor macroprocessor userguide parallel internals gsa dseries-a
info_TEXINFOS
=
dynare.texi
if
HAVE_TEXI2HTML
if
HAVE_LATEX2HTML
html-local
:
dynare.html
dynare.html
:
dynare.texi
rm
-rf
dynare.html
mkdir
-p
dynare.html
cd
dynare.html
&&
$(
TEXI2HTML
)
--l2h
--split
section
--prefix
index ../dynare.texi
endif
texi2any
--html
--split
=
section
-c
L2H
=
1
-c
PREFIX
=
dynare.html dynare.texi
endif
PDF_TARGETS
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment