mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Add code to detect rst2html.py or rst2html
This commit is contained in:
parent
7ac096c3c0
commit
13e064e4e1
2 changed files with 12 additions and 3 deletions
11
Makefile.am
11
Makefile.am
|
@ -1,13 +1,18 @@
|
||||||
SUBDIRS = po intl lib deps src doc test
|
SUBDIRS = po intl lib deps src doc test
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4 --install
|
ACLOCAL_AMFLAGS = -I m4 --install
|
||||||
|
RST2HTML = @RST2HTML@
|
||||||
|
|
||||||
EXTRA_DIST = config.rpath mingw-config android-config android-make\
|
EXTRA_DIST = config.rpath mingw-config android-config android-make\
|
||||||
build_osx_release.sh
|
build_osx_release.sh
|
||||||
|
|
||||||
dist_doc_DATA = README README.rst README.html
|
dist_doc_DATA = README README.rst
|
||||||
|
|
||||||
|
if HAVE_RST2HTML
|
||||||
|
dist_doc_DATA += README.html
|
||||||
|
README.html: README.rst
|
||||||
|
$(RST2HTML) README.rst > README.html
|
||||||
|
endif # HAVE_RST2HTML
|
||||||
|
|
||||||
dist_noinst_DATA = LICENSE.OpenSSL
|
dist_noinst_DATA = LICENSE.OpenSSL
|
||||||
|
|
||||||
README.html: README.rst
|
|
||||||
rst2html README.rst > README.html
|
|
||||||
|
|
|
@ -83,6 +83,10 @@ AC_PATH_PROG([ASCIIDOC], [asciidoc])
|
||||||
AC_SUBST([ASCIIDOC])
|
AC_SUBST([ASCIIDOC])
|
||||||
AM_CONDITIONAL([HAVE_ASCIIDOC], [ test "x$ASCIIDOC" != "x" ])
|
AM_CONDITIONAL([HAVE_ASCIIDOC], [ test "x$ASCIIDOC" != "x" ])
|
||||||
|
|
||||||
|
AC_PATH_PROGS([RST2HTML], [rst2html.py rst2html])
|
||||||
|
AC_SUBST([RST2HTML])
|
||||||
|
AM_CONDITIONAL([HAVE_RST2HTML], [ test "x$RST2HTML" != "x" ])
|
||||||
|
|
||||||
# Setting language choice
|
# Setting language choice
|
||||||
AC_LANG([C++])
|
AC_LANG([C++])
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue