summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-06-18 11:02:12 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-06-18 11:02:12 +0000
commitdb612d5045ef55da386a2c3350d4811d1da1a858 (patch)
tree85033034756fbcbb41dd65ff327486e6f52efdb3
parentb0a9c15f709c46fdaa3ee230833f393d0dabc4c5 (diff)
Start development for TL 2015
git-svn-id: svn://tug.org/texlive/trunk@34273 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Build/source/ChangeLog5
-rw-r--r--Build/source/Makefile.in6
-rw-r--r--Build/source/aclocal.m42
-rwxr-xr-xBuild/source/configure205
-rw-r--r--Build/source/doc/ChangeLog6
-rw-r--r--Build/source/doc/Makefile.in6
-rw-r--r--Build/source/doc/tlbuild.info503
-rw-r--r--Build/source/doc/tlbuild.texi7
-rw-r--r--Build/source/libs/README14
-rw-r--r--Build/source/tardate.ac2
-rw-r--r--Build/source/utils/README2
-rw-r--r--Build/source/version.ac2
12 files changed, 476 insertions, 284 deletions
diff --git a/Build/source/ChangeLog b/Build/source/ChangeLog
index 6b4f7772d86..890309fe281 100644
--- a/Build/source/ChangeLog
+++ b/Build/source/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-16 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * version.ac: Switch 2014 => 2015/dev'
+ * tardate.ac: Switch to 2014-06-16.
+
2014-04-28 Peter Breitenlohner <peb@mppmu.mpg.de>
Makefile.am: New names for README.* files.
diff --git a/Build/source/Makefile.in b/Build/source/Makefile.in
index d17634ea3df..cb61f92f2ad 100644
--- a/Build/source/Makefile.in
+++ b/Build/source/Makefile.in
@@ -96,6 +96,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/m4/kpse-cxx-hack.m4 \
$(top_srcdir)/m4/kpse-freetype2-flags.m4 \
$(top_srcdir)/m4/kpse-gd-flags.m4 \
+ $(top_srcdir)/m4/kpse-gmp-flags.m4 \
$(top_srcdir)/m4/kpse-graphite2-flags.m4 \
$(top_srcdir)/m4/kpse-harfbuzz-flags.m4 \
$(top_srcdir)/m4/kpse-icu-flags.m4 \
@@ -104,6 +105,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/m4/kpse-libpng-flags.m4 \
$(top_srcdir)/m4/kpse-lt-hack.m4 \
$(top_srcdir)/m4/kpse-mktex.m4 \
+ $(top_srcdir)/m4/kpse-mpfr-flags.m4 \
$(top_srcdir)/m4/kpse-options.m4 \
$(top_srcdir)/m4/kpse-pixman-flags.m4 \
$(top_srcdir)/m4/kpse-pkgs.m4 \
@@ -178,6 +180,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/libs/zziplib/ac/withenable.ac \
$(top_srcdir)/libs/xpdf/ac/withenable.ac \
$(top_srcdir)/libs/poppler/ac/withenable.ac \
+ $(top_srcdir)/libs/mpfr/ac/withenable.ac \
+ $(top_srcdir)/libs/gmp/ac/withenable.ac \
$(top_srcdir)/libs/cairo/ac/withenable.ac \
$(top_srcdir)/libs/pixman/ac/withenable.ac \
$(top_srcdir)/libs/potrace/ac/withenable.ac \
@@ -201,6 +205,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/libs/potrace/ac/potrace.ac \
$(top_srcdir)/libs/pixman/ac/pixman.ac \
$(top_srcdir)/libs/cairo/ac/cairo.ac \
+ $(top_srcdir)/libs/gmp/ac/gmp.ac \
+ $(top_srcdir)/libs/mpfr/ac/mpfr.ac \
$(top_srcdir)/libs/poppler/ac/poppler.ac \
$(top_srcdir)/libs/xpdf/ac/xpdf.ac \
$(top_srcdir)/libs/zziplib/ac/zziplib.ac \
diff --git a/Build/source/aclocal.m4 b/Build/source/aclocal.m4
index 2bd20e34f9f..d0fdac28049 100644
--- a/Build/source/aclocal.m4
+++ b/Build/source/aclocal.m4
@@ -1188,6 +1188,7 @@ m4_include([m4/kpse-common.m4])
m4_include([m4/kpse-cxx-hack.m4])
m4_include([m4/kpse-freetype2-flags.m4])
m4_include([m4/kpse-gd-flags.m4])
+m4_include([m4/kpse-gmp-flags.m4])
m4_include([m4/kpse-graphite2-flags.m4])
m4_include([m4/kpse-harfbuzz-flags.m4])
m4_include([m4/kpse-icu-flags.m4])
@@ -1196,6 +1197,7 @@ m4_include([m4/kpse-libpaper-flags.m4])
m4_include([m4/kpse-libpng-flags.m4])
m4_include([m4/kpse-lt-hack.m4])
m4_include([m4/kpse-mktex.m4])
+m4_include([m4/kpse-mpfr-flags.m4])
m4_include([m4/kpse-options.m4])
m4_include([m4/kpse-pixman-flags.m4])
m4_include([m4/kpse-pkgs.m4])
diff --git a/Build/source/configure b/Build/source/configure
index c00d55b1633..2768dae035c 100755
--- a/Build/source/configure
+++ b/Build/source/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for TeX Live 2014-04-01.
+# Generated by GNU Autoconf 2.69 for TeX Live 2014-06-16.
#
# Report bugs to <tex-k@tug.org>.
#
@@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='TeX Live'
PACKAGE_TARNAME='tex-live'
-PACKAGE_VERSION='2014-04-01'
-PACKAGE_STRING='TeX Live 2014-04-01'
+PACKAGE_VERSION='2014-06-16'
+PACKAGE_STRING='TeX Live 2014-06-16'
PACKAGE_BUGREPORT='tex-k@tug.org'
PACKAGE_URL=''
@@ -899,6 +899,12 @@ with_system_graphite2
with_system_zziplib
with_system_xpdf
with_system_poppler
+with_system_mpfr
+with_mpfr_includes
+with_mpfr_libdir
+with_system_gmp
+with_gmp_includes
+with_gmp_libdir
with_system_cairo
with_system_pixman
with_system_potrace
@@ -1499,7 +1505,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures TeX Live 2014-04-01 to adapt to many kinds of systems.
+\`configure' configures TeX Live 2014-06-16 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1573,7 +1579,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of TeX Live 2014-04-01:";;
+ short | recursive ) echo "Configuration of TeX Live 2014-06-16:";;
esac
cat <<\_ACEOF
@@ -1760,6 +1766,13 @@ Optional Packages:
xpdf library from TL (requires pkg-config)
--with-system-poppler use installed poppler headers and library (requires
pkg-config)
+ --with-system-mpfr use installed mpfr headers and library
+ --with-mpfr-includes=DIR
+ mpfr headers installed in DIR
+ --with-mpfr-libdir=DIR mpfr library installed in DIR
+ --with-system-gmp use installed gmp headers and library
+ --with-gmp-includes=DIR gmp headers installed in DIR
+ --with-gmp-libdir=DIR gmp library installed in DIR
--with-system-cairo use installed cairo headers and library (requires
pkg-config)
--with-system-pixman use installed pixman headers and library (requires
@@ -1883,7 +1896,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-TeX Live configure 2014-04-01
+TeX Live configure 2014-06-16
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2614,7 +2627,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by TeX Live $as_me 2014-04-01, which was
+It was created by TeX Live $as_me 2014-06-16, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -5772,6 +5785,100 @@ test "x$need_poppler" = xyes && {
need_zlib=yes
}
+## libs/mpfr/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory libs/mpfr/
+## configure options and TL libraries required for mpfr
+
+# Check whether --with-system-mpfr was given.
+if test "${with_system_mpfr+set}" = set; then :
+ withval=$with_system_mpfr;
+fi
+
+# Check whether --with-mpfr-includes was given.
+if test "${with_mpfr_includes+set}" = set; then :
+ withval=$with_mpfr_includes;
+fi
+
+# Check whether --with-mpfr-libdir was given.
+if test "${with_mpfr_libdir+set}" = set; then :
+ withval=$with_mpfr_libdir;
+fi
+if test "x$with_system_mpfr" = x; then
+ if test -f $srcdir/libs/mpfr/configure; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`mpfr' headers and library from TL tree" >&5
+$as_echo "$as_me: Assuming \`mpfr' headers and library from TL tree" >&6;}
+ with_system_mpfr=no
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming installed \`mpfr' headers and library" >&5
+$as_echo "$as_me: Assuming installed \`mpfr' headers and library" >&6;}
+ with_system_mpfr=yes
+ fi
+ ac_configure_args="$ac_configure_args '--with-system-mpfr=$with_system_mpfr'"
+elif test "x$with_system_mpfr" = xyes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Using installed \`mpfr' headers and library" >&5
+$as_echo "$as_me: Using installed \`mpfr' headers and library" >&6;}
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Using \`mpfr' headers and library from TL tree" >&5
+$as_echo "$as_me: Using \`mpfr' headers and library from TL tree" >&6;}
+ if test "x$with_system_mpfr" != xno; then
+ with_system_mpfr=no
+ ac_configure_args="$ac_configure_args '--without-system-mpfr'"
+ fi
+fi
+if test "x$with_system_mpfr" = xyes; then
+ if test "x$with_system_gmp" = x; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: -> installed \`gmp' headers and library" >&5
+$as_echo "$as_me: -> installed \`gmp' headers and library" >&6;}
+ with_system_gmp=yes
+ ac_configure_args="$ac_configure_args '--with-system-gmp'"
+ elif test "x$with_system_gmp" != xyes; then
+ as_fn_error $? "Sorry, \`--with-system-mpfr' requires \`--with-system-gmp'" "$LINENO" 5
+ fi
+fi
+
+test "x$need_mpfr" = xyes && {
+ need_gmp=yes
+}
+
+## libs/gmp/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory libs/gmp/
+## configure options and TL libraries required for gmp
+
+# Check whether --with-system-gmp was given.
+if test "${with_system_gmp+set}" = set; then :
+ withval=$with_system_gmp;
+fi
+
+# Check whether --with-gmp-includes was given.
+if test "${with_gmp_includes+set}" = set; then :
+ withval=$with_gmp_includes;
+fi
+
+# Check whether --with-gmp-libdir was given.
+if test "${with_gmp_libdir+set}" = set; then :
+ withval=$with_gmp_libdir;
+fi
+if test "x$with_system_gmp" = x; then
+ if test -f $srcdir/libs/gmp/configure; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`gmp' headers and library from TL tree" >&5
+$as_echo "$as_me: Assuming \`gmp' headers and library from TL tree" >&6;}
+ with_system_gmp=no
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming installed \`gmp' headers and library" >&5
+$as_echo "$as_me: Assuming installed \`gmp' headers and library" >&6;}
+ with_system_gmp=yes
+ fi
+ ac_configure_args="$ac_configure_args '--with-system-gmp=$with_system_gmp'"
+elif test "x$with_system_gmp" = xyes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Using installed \`gmp' headers and library" >&5
+$as_echo "$as_me: Using installed \`gmp' headers and library" >&6;}
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Using \`gmp' headers and library from TL tree" >&5
+$as_echo "$as_me: Using \`gmp' headers and library from TL tree" >&6;}
+ if test "x$with_system_gmp" != xno; then
+ with_system_gmp=no
+ ac_configure_args="$ac_configure_args '--without-system-gmp'"
+ fi
+fi
+
## libs/cairo/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory libs/cairo/
## configure options and TL libraries required for cairo
@@ -10311,7 +10418,7 @@ fi
# Define the identity of the package.
PACKAGE='tex-live'
- VERSION='2014-04-01'
+ VERSION='2014-06-16'
cat >>confdefs.h <<_ACEOF
@@ -20493,6 +20600,22 @@ elif test "x$need_cairo:$with_system_cairo" = xyes:yes; then
as_fn_error $? "did not find cairo-1.12 or better" "$LINENO" 5
fi
+if test "x$with_gmp_includes" != x && test "x$with_gmp_includes" != xyes; then
+ GMP_INCLUDES="-I$with_gmp_includes"
+fi
+GMP_LIBS="-lgmp"
+if test "x$with_gmp_libdir" != x && test "x$with_gmp_libdir" != xyes; then
+ GMP_LIBS="-L$with_gmp_libdir $GMP_LIBS"
+fi
+
+if test "x$with_mpfr_includes" != x && test "x$with_mpfr_includes" != xyes; then
+ MPFR_INCLUDES="-I$with_mpfr_includes"
+fi
+MPFR_LIBS="-lmpfr"
+if test "x$with_mpfr_libdir" != x && test "x$with_mpfr_libdir" != xyes; then
+ MPFR_LIBS="-L$with_mpfr_libdir $MPFR_LIBS"
+fi
+
if $PKG_CONFIG poppler --atleast-version=0.18; then
POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"'
POPPLER_INCLUDES="$POPPLER_VERSION `$PKG_CONFIG poppler --cflags`"
@@ -20942,6 +21065,64 @@ rm -f core conftest.err conftest.$ac_objext \
$as_echo "$kpse_res" >&6; }
fi
+## libs/gmp/ac/gmp.ac: configure.ac fragment for the TeX Live subdirectory libs/gmp/
+## basic check of system gmp
+if test "x$need_gmp:$with_system_gmp" = xyes:yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking requested system \`gmp' library" >&5
+$as_echo_n "checking requested system \`gmp' library... " >&6; }
+ CPPFLAGS="$GMP_INCLUDES $CPPFLAGS"
+ LIBS="$GMP_LIBS $LIBS"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <gmp.h>
+int
+main ()
+{
+const char *s = gmp_version;
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ syslib_used=yes kpse_res=ok
+else
+ syslib_status=no kpse_res=failed
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $kpse_res" >&5
+$as_echo "$kpse_res" >&6; }
+fi
+
+## libs/mpfr/ac/mpfr.ac: configure.ac fragment for the TeX Live subdirectory libs/mpfr/
+## basic check of system mpfr
+if test "x$need_mpfr:$with_system_mpfr" = xyes:yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking requested system \`mpfr' library" >&5
+$as_echo_n "checking requested system \`mpfr' library... " >&6; }
+ CPPFLAGS="$MPFR_INCLUDES $CPPFLAGS"
+ LIBS="$MPFR_LIBS $LIBS"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <mpfr.h>
+int
+main ()
+{
+const char *s = mpfr_get_version();
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ syslib_used=yes kpse_res=ok
+else
+ syslib_status=no kpse_res=failed
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $kpse_res" >&5
+$as_echo "$kpse_res" >&6; }
+fi
+
## libs/poppler/ac/poppler.ac: configure.ac fragment for the TeX Live subdirectory libs/poppler/
## basic check of system poppler
ac_ext=cpp
@@ -21793,7 +21974,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by TeX Live $as_me 2014-04-01, which was
+This file was extended by TeX Live $as_me 2014-06-16, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -21850,7 +22031,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-TeX Live config.status 2014-04-01
+TeX Live config.status 2014-06-16
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
@@ -23887,11 +24068,11 @@ msg_compiling="$msg_compiling
test "x$srcdir" = x. || msg_compiling="$msg_compiling
from sources in $kpse_src"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result:
-** Configuration summary for $PACKAGE_STRING (2014$with_banner_add):
+** Configuration summary for $PACKAGE_STRING (2015/dev$with_banner_add):
$msg_compiling" >&5
$as_echo "
-** Configuration summary for $PACKAGE_STRING (2014$with_banner_add):
+** Configuration summary for $PACKAGE_STRING (2015/dev$with_banner_add):
$msg_compiling" >&6; }
case $kpse_src$kpse_bld in
diff --git a/Build/source/doc/ChangeLog b/Build/source/doc/ChangeLog
index 14a610848ca..3c89dce08ef 100644
--- a/Build/source/doc/ChangeLog
+++ b/Build/source/doc/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-16 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * tlbuild.texi: Drop '--with-xindy-recode'.
+
2014-05-20 Karl Berry <karl@tug.org>
* tlbuild-incl/install-tl.texi,
@@ -10,7 +14,7 @@
(readme-install): new phony target.
* splitinfo.gawk: quit at appendix too.
-2014-05-09h20 Peter Breitenlohner <peb@mppmu.mpg.de>
+2014-05-20 Peter Breitenlohner <peb@mppmu.mpg.de>
* Makefile.am (EXTRA_DIST): no ${PDFS} any more.
diff --git a/Build/source/doc/Makefile.in b/Build/source/doc/Makefile.in
index be32f0b630d..5f695d686a3 100644
--- a/Build/source/doc/Makefile.in
+++ b/Build/source/doc/Makefile.in
@@ -87,6 +87,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/m4/kpse-cxx-hack.m4 \
$(top_srcdir)/m4/kpse-freetype2-flags.m4 \
$(top_srcdir)/m4/kpse-gd-flags.m4 \
+ $(top_srcdir)/m4/kpse-gmp-flags.m4 \
$(top_srcdir)/m4/kpse-graphite2-flags.m4 \
$(top_srcdir)/m4/kpse-harfbuzz-flags.m4 \
$(top_srcdir)/m4/kpse-icu-flags.m4 \
@@ -95,6 +96,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/m4/kpse-libpng-flags.m4 \
$(top_srcdir)/m4/kpse-lt-hack.m4 \
$(top_srcdir)/m4/kpse-mktex.m4 \
+ $(top_srcdir)/m4/kpse-mpfr-flags.m4 \
$(top_srcdir)/m4/kpse-options.m4 \
$(top_srcdir)/m4/kpse-pixman-flags.m4 \
$(top_srcdir)/m4/kpse-pkgs.m4 \
@@ -169,6 +171,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/libs/zziplib/ac/withenable.ac \
$(top_srcdir)/libs/xpdf/ac/withenable.ac \
$(top_srcdir)/libs/poppler/ac/withenable.ac \
+ $(top_srcdir)/libs/mpfr/ac/withenable.ac \
+ $(top_srcdir)/libs/gmp/ac/withenable.ac \
$(top_srcdir)/libs/cairo/ac/withenable.ac \
$(top_srcdir)/libs/pixman/ac/withenable.ac \
$(top_srcdir)/libs/potrace/ac/withenable.ac \
@@ -192,6 +196,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/kpse-cairo-flags.m4 \
$(top_srcdir)/libs/potrace/ac/potrace.ac \
$(top_srcdir)/libs/pixman/ac/pixman.ac \
$(top_srcdir)/libs/cairo/ac/cairo.ac \
+ $(top_srcdir)/libs/gmp/ac/gmp.ac \
+ $(top_srcdir)/libs/mpfr/ac/mpfr.ac \
$(top_srcdir)/libs/poppler/ac/poppler.ac \
$(top_srcdir)/libs/xpdf/ac/xpdf.ac \
$(top_srcdir)/libs/zziplib/ac/zziplib.ac \
diff --git a/Build/source/doc/tlbuild.info b/Build/source/doc/tlbuild.info
index 306b033ad62..325cd2210c8 100644
--- a/Build/source/doc/tlbuild.info
+++ b/Build/source/doc/tlbuild.info
@@ -1584,11 +1584,6 @@ for a non-native one) indicates that 'xindy' will use the installed
version of 'clisp' (which must be identical to the one used to build
'xindy').
-'--with-recode'
-Use 'recode' instead of 'iconv' to build the 'xindy' rules and
-documentation, required for some systems where 'iconv' is missing or
-broken.
-

File: tlbuild.info, Node: Library-specific configure options, Next: Variables for configure, Prev: Program-specific configure options, Up: Configure options
@@ -4456,8 +4451,6 @@ Index
(line 16)
* --with-libgs-includes, -libdir: Configure options for 'texk/dvisvgm'.
(line 17)
-* --with-recode: Configure options for 'utils/xindy'.
- (line 23)
* --with-system-kpathsea: 'kpathsea' library. (line 14)
* --with-system-LIB: Adding a new generic library module.
(line 34)
@@ -4629,8 +4622,6 @@ Index
* GNU/Linux distro: Distro builds. (line 6)
* Gnulib, used for common files: Top-level directories.
(line 30)
-* iconv: Configure options for 'utils/xindy'.
- (line 23)
* ICU cross compiling: Cross problems. (line 25)
* ICU libraries: Variables for configure.
(line 24)
@@ -4803,8 +4794,6 @@ Index
* program-specific 'configure' options: Program-specific configure options.
(line 6)
* reautoconf: Build system tools. (line 28)
-* recode: Configure options for 'utils/xindy'.
- (line 23)
* requirements for building: Prerequisites. (line 6)
* runscript.exe: Macros for Windows. (line 25)
* scripts, linked and not maintained: Linked scripts. (line 6)
@@ -4959,251 +4948,251 @@ Node: Configure options for 'texk/dvisvgm'61510
Node: Configure options for 'texk/texlive'62400
Node: Configure options for 'texk/xdvik'62827
Node: Configure options for 'utils/xindy'63437
-Node: Library-specific configure options64499
-Node: Configure options for 'kpathsea'65513
-Node: Configure options for system 'poppler'66226
-Node: Variables for configure66993
-Node: Cross compilation68421
-Node: Cross configuring69686
-Node: Cross problems71359
-Node: Coding conventions73220
-Node: Declarations and definitions73889
-Node: Const76072
-Node: install-tl77935
-Node: install-tl NAME78276
-Node: install-tl SYNOPSIS78434
-Node: install-tl DESCRIPTION78642
-Node: install-tl REFERENCES79643
-Node: install-tl OPTIONS80159
-Ref: install-tl *-gui* [[=]_module_]80513
-Ref: install-tl 'text'80722
-Ref: install-tl 'wizard'80845
-Ref: install-tl 'perltk'80999
-Ref: install-tl *-no-gui*81433
-Ref: install-tl *-lang* _llcode_81514
-Ref: install-tl *-repository* _url|path_82201
-Ref: install-tl *-select-repository*84012
-Ref: install-tl *-all-options*84448
-Ref: install-tl *-custom-bin* _path_84755
-Ref: install-tl *-debug-translation*85410
-Ref: install-tl *-force-platform* _platform_85629
-Ref: install-tl *-help*, *--help*, *-?*85873
-Ref: install-tl *-in-place*86266
-Ref: install-tl *-logfile* _file_86793
-Ref: install-tl *-no-cls*87144
-Ref: install-tl *-non-admin*87275
-Ref: install-tl *--persistent-downloads*87380
-Ref: install-tl *--no-persistent-downloads*87408
-Ref: install-tl *-portable*88016
-Ref: install-tl *-print-platform*88155
-Ref: install-tl *-profile* _profile_88348
-Ref: install-tl *-q*89842
-Ref: install-tl *-scheme* _scheme_89904
-Ref: install-tl *-v*90378
-Ref: install-tl *-version*, *--version*90539
-Node: install-tl ENVIRONMENT VARIABLES90670
-Ref: install-tl 'TEXLIVE_INSTALL_ENV_NOCHECK'91059
-Ref: install-tl 'TEXLIVE_INSTALL_NO_CONTEXT_CACHE'91261
-Ref: install-tl 'TEXLIVE_INSTALL_PREFIX'91367
-Ref: install-tl 'TEXLIVE_INSTALL_TEXMFCONFIG'91398
-Ref: install-tl 'TEXLIVE_INSTALL_TEXMFHOME'91427
-Ref: install-tl 'TEXLIVE_INSTALL_TEXMFLOCAL'91457
-Ref: install-tl 'TEXLIVE_INSTALL_TEXMFSYSCONFIG'91491
-Ref: install-tl 'TEXLIVE_INSTALL_TEXMFSYSVAR'91522
-Ref: install-tl 'TEXLIVE_INSTALL_TEXMFVAR'91550
-Ref: install-tl 'NOPERLDOC'91605
-Node: install-tl AUTHORS AND COPYRIGHT91669
-Node: tlmgr92027
-Node: tlmgr NAME92464
-Node: tlmgr SYNOPSIS92589
-Node: tlmgr DESCRIPTION92779
-Node: tlmgr EXAMPLES93875
-Ref: tlmgr 'tlmgr option repository http://mirror.ctan.org/systems/texlive/tlnet'94166
-Ref: tlmgr 'tlmgr update --list'94347
-Ref: tlmgr 'tlmgr update --all'94440
-Ref: tlmgr 'tlmgr info' _pkg_94596
-Node: tlmgr OPTIONS94802
-Ref: tlmgr *--repository* _url|path_95322
-Ref: tlmgr *--gui* [_action_]96047
-Ref: tlmgr *--gui-lang* _llcode_96454
-Ref: tlmgr *--debug-translation*97137
-Ref: tlmgr *--machine-readable*97340
-Ref: tlmgr *--no-execute-actions*97608
-Ref: tlmgr *--package-logfile* _file_97801
-Ref: tlmgr *--pause*98056
-Ref: tlmgr *--persistent-downloads*98211
-Ref: tlmgr *--no-persistent-downloads*98239
-Ref: tlmgr *--pin-file*98733
-Ref: tlmgr *--usermode*98951
-Ref: tlmgr *--usertree* _dir_99071
-Node: tlmgr ACTIONS99621
-Node: tlmgr help100853
-Node: tlmgr version101329
-Node: tlmgr backup [--clean[=_N_]] [--backupdir _dir_] [--all | _pkg_]...101647
-Ref: tlmgr *--backupdir* _directory_102741
-Ref: tlmgr *--all*102938
-Ref: tlmgr *--clean*[=_N_]103160
-Ref: tlmgr *--dry-run*103457
-Node: tlmgr candidates _pkg_103577
-Ref: tlmgr *candidates _pkg_* 1103864
-Node: tlmgr check [_option_]... [files|depends|executes|runfiles|all]104008
-Ref: tlmgr *files*104451
-Ref: tlmgr *depends*104586
-Ref: tlmgr *executes*104928
-Ref: tlmgr *runfiles*105046
-Ref: tlmgr *--use-svn*105158
-Node: tlmgr conf [texmf|tlmgr|updmap [--conffile _file_] [--delete] [_key_ [_value_]]]105275
-Node: tlmgr dump-tlpdb [--local|--remote]107347
-Ref: tlmgr *--local*107857
-Ref: tlmgr *--remote*107896
-Node: tlmgr generate [_option_]... _what_108318
-Ref: tlmgr *generate language*108559
-Ref: tlmgr *generate language.dat*108584
-Ref: tlmgr *generate language.def*108609
-Ref: tlmgr *generate language.dat.lua*108638
-Ref: tlmgr *generate fmtutil*108658
-Ref: tlmgr *--dest* _output_file_110895
-Ref: tlmgr *--localcfg* _local_conf_file_111471
-Ref: tlmgr *--rebuild-sys*111594
-Node: tlmgr gui112455
-Node: tlmgr info [_option_...] [collections|schemes|_pkg_...]112699
-Ref: tlmgr *--list*113904
-Ref: tlmgr *--only-installed*114183
-Ref: tlmgr *--taxonomy*114398
-Ref: tlmgr *--keyword*114410
-Ref: tlmgr *--functionality*114428
-Ref: tlmgr *--characterization*114449
-Node: tlmgr init-usertree114662
-Node: tlmgr install [_option_]... _pkg_...115088
-Ref: tlmgr *--file*115452
-Ref: tlmgr *--reinstall*115678
-Ref: tlmgr *--no-depends*116058
-Ref: tlmgr *--no-depends-at-all*116217
-Ref: tlmgr *--dry-run* 1116615
-Ref: tlmgr *--force*116733
-Node: tlmgr option116939
-Ref: tlmgr *option [show]*117112
-Ref: tlmgr *option showall*117130
-Ref: tlmgr *option _key_ [_value_]*117156
-Node: tlmgr paper121004
-Ref: tlmgr *paper [a4|letter]*121189
-Ref: tlmgr *[xdvi|pdftex|dvips|dvipdfmx|context|psutils] paper [_papersize_|--list]*121263
-Node: tlmgr path [--w32mode=user|admin] [add|remove]122290
-Node: tlmgr pinning123773
-Ref: tlmgr 'pinning show'124080
-Ref: tlmgr 'pinning add' _repo_ _pkgglob_...124153
-Ref: tlmgr 'pinning remove' _repo_ _pkgglob_...124272
-Ref: tlmgr 'pinning remove _repo_ --all'124425
-Node: tlmgr platform list|add|remove _platform_...124479
-Node: tlmgr platform set _platform_124727
-Node: tlmgr platform set auto124955
-Ref: tlmgr *--dry-run* 2126072
-Node: tlmgr postaction [--w32mode=user|admin] [--fileassocmode=1|2] [--all] [install|remove] [shortcut|fileassoc|script] [_pkg_]...126181
-Node: tlmgr print-platform127483
-Node: tlmgr restore [--backupdir _dir_] [--all | _pkg_ [_rev_]]127955
-Ref: tlmgr *--all* 1128851
-Ref: tlmgr *--backupdir* _directory_ 1129045
-Ref: tlmgr *--dry-run* 3129201
-Ref: tlmgr *--force* 1129318
-Node: tlmgr remove [_option_]... _pkg_...129346
-Ref: tlmgr *--no-depends* 1129869
-Ref: tlmgr *--no-depends-at-all* 1129931
-Ref: tlmgr *--force* 2129987
-Ref: tlmgr *--dry-run* 4130459
-Node: tlmgr repository130566
-Ref: tlmgr *repository list*130774
-Ref: tlmgr *repository list _path|tag_*130804
-Ref: tlmgr *repository add _path_ [_tag_]*130837
-Ref: tlmgr *repository remove _path|tag_*130869
-Ref: tlmgr *repository set _path_[#_tag_] [_path_[#_tag_] ...]*130923
-Node: tlmgr search [_option_...] _what_132007
-Node: tlmgr search [_option_...] --file _what_132518
-Node: tlmgr search [_option_...] --taxonomy _what_132769
-Node: tlmgr search [_option_...] --keyword _what_133080
-Node: tlmgr search [_option_...] --functionality _what_133398
-Node: tlmgr search [_option_...] --characterization _what_133736
-Node: tlmgr search [_option_...] --all _what_134076
-Ref: tlmgr *--global*134524
-Ref: tlmgr *--word*134636
-Ref: tlmgr *--list* 1134875
-Ref: tlmgr *--file* 1135221
-Ref: tlmgr *--taxonomy* 1135278
-Ref: tlmgr *--keyword* 1135290
-Ref: tlmgr *--functionality* 1135308
-Ref: tlmgr *--characterization* 1135329
-Ref: tlmgr *--all* 2135484
-Node: tlmgr uninstall135567
-Ref: tlmgr *--force* 3135821
-Node: tlmgr update [_option_]... [_pkg_]...135877
-Ref: tlmgr *--all* 3136248
-Ref: tlmgr *--self*137989
-Ref: tlmgr *--dry-run* 5138753
-Ref: tlmgr *--list* [_pkg_]138930
-Ref: tlmgr *--exclude* _pkg_139619
-Ref: tlmgr *--no-auto-remove* [_pkg_]...140312
-Ref: tlmgr *--no-auto-install* [_pkg_]...140763
-Ref: tlmgr *--reinstall-forcibly-removed*141419
-Ref: tlmgr *--backup* and *--backupdir* _directory_141983
-Ref: tlmgr *--no-depends* 2143164
-Ref: tlmgr *--no-depends-at-all* 2143367
-Ref: tlmgr *--force* 4143423
-Node: tlmgr USER MODE143849
-Node: tlmgr user mode install146660
-Node: tlmgr user mode backup; restore; remove; update147607
-Node: tlmgr user mode generate; option; paper148049
-Node: tlmgr CONFIGURATION FILE FOR TLMGR148425
-Node: tlmgr TAXONOMIES149516
-Ref: tlmgr '--keyword' 2150142
-Ref: tlmgr '--functionality' 2150227
-Ref: tlmgr '--characterization' 2150383
-Ref: tlmgr '--taxonomy' 2150524
-Node: tlmgr MULTIPLE REPOSITORIES151065
-Node: tlmgr Pinning152786
-Node: tlmgr GUI FOR TLMGR154761
-Node: tlmgr Main display155983
-Node: tlmgr Display configuration area156235
-Ref: tlmgr Status156596
-Ref: tlmgr Category156760
-Ref: tlmgr Match156946
-Ref: tlmgr Selection157206
-Ref: tlmgr Display configuration buttons157410
-Node: tlmgr Package list area157593
-Ref: tlmgr a checkbox158177
-Ref: tlmgr package name158313
-Ref: tlmgr local revision (and version)158412
-Ref: tlmgr remote revision (and version)158787
-Ref: tlmgr short description159084
-Node: tlmgr Main display action buttons159129
-Ref: tlmgr Update all installed159395
-Ref: tlmgr Update159767
-Ref: tlmgr Install159817
-Ref: tlmgr Remove160003
-Ref: tlmgr Backup160181
-Node: tlmgr Menu bar160338
-Ref: tlmgr 'tlmgr' menu160535
-Ref: tlmgr 'Options menu'160843
-Ref: tlmgr 'Actions menu'161926
-Ref: tlmgr 'Help menu'162354
-Node: tlmgr MACHINE-READABLE OUTPUT162487
-Node: tlmgr Machine-readable 'update' and 'install' output163303
-Ref: tlmgr 'location-url' _location_164585
-Ref: tlmgr 'total-bytes' _count_164801
-Ref: tlmgr _pkgname_165211
-Ref: tlmgr _status_165421
-Ref: tlmgr 'd'165499
-Ref: tlmgr 'f'165559
-Ref: tlmgr 'u'165738
-Ref: tlmgr 'r'165784
-Ref: tlmgr 'a'165907
-Ref: tlmgr 'i'166085
-Ref: tlmgr 'I'166204
-Ref: tlmgr _localrev_166306
-Ref: tlmgr _serverrev_166413
-Ref: tlmgr _size_166525
-Ref: tlmgr _runtime_166694
-Ref: tlmgr _esttot_166764
-Node: tlmgr Machine-readable 'option' output166797
-Node: tlmgr AUTHORS AND COPYRIGHT167315
-Node: Index167662
+Node: Library-specific configure options64342
+Node: Configure options for 'kpathsea'65356
+Node: Configure options for system 'poppler'66069
+Node: Variables for configure66836
+Node: Cross compilation68264
+Node: Cross configuring69529
+Node: Cross problems71202
+Node: Coding conventions73063
+Node: Declarations and definitions73732
+Node: Const75915
+Node: install-tl77778
+Node: install-tl NAME78119
+Node: install-tl SYNOPSIS78277
+Node: install-tl DESCRIPTION78485
+Node: install-tl REFERENCES79486
+Node: install-tl OPTIONS80002
+Ref: install-tl *-gui* [[=]_module_]80356
+Ref: install-tl 'text'80565
+Ref: install-tl 'wizard'80688
+Ref: install-tl 'perltk'80842
+Ref: install-tl *-no-gui*81276
+Ref: install-tl *-lang* _llcode_81357
+Ref: install-tl *-repository* _url|path_82044
+Ref: install-tl *-select-repository*83855
+Ref: install-tl *-all-options*84291
+Ref: install-tl *-custom-bin* _path_84598
+Ref: install-tl *-debug-translation*85253
+Ref: install-tl *-force-platform* _platform_85472
+Ref: install-tl *-help*, *--help*, *-?*85716
+Ref: install-tl *-in-place*86109
+Ref: install-tl *-logfile* _file_86636
+Ref: install-tl *-no-cls*86987
+Ref: install-tl *-non-admin*87118
+Ref: install-tl *--persistent-downloads*87223
+Ref: install-tl *--no-persistent-downloads*87251
+Ref: install-tl *-portable*87859
+Ref: install-tl *-print-platform*87998
+Ref: install-tl *-profile* _profile_88191
+Ref: install-tl *-q*89685
+Ref: install-tl *-scheme* _scheme_89747
+Ref: install-tl *-v*90221
+Ref: install-tl *-version*, *--version*90382
+Node: install-tl ENVIRONMENT VARIABLES90513
+Ref: install-tl 'TEXLIVE_INSTALL_ENV_NOCHECK'90902
+Ref: install-tl 'TEXLIVE_INSTALL_NO_CONTEXT_CACHE'91104
+Ref: install-tl 'TEXLIVE_INSTALL_PREFIX'91210
+Ref: install-tl 'TEXLIVE_INSTALL_TEXMFCONFIG'91241
+Ref: install-tl 'TEXLIVE_INSTALL_TEXMFHOME'91270
+Ref: install-tl 'TEXLIVE_INSTALL_TEXMFLOCAL'91300
+Ref: install-tl 'TEXLIVE_INSTALL_TEXMFSYSCONFIG'91334
+Ref: install-tl 'TEXLIVE_INSTALL_TEXMFSYSVAR'91365
+Ref: install-tl 'TEXLIVE_INSTALL_TEXMFVAR'91393
+Ref: install-tl 'NOPERLDOC'91448
+Node: install-tl AUTHORS AND COPYRIGHT91512
+Node: tlmgr91870
+Node: tlmgr NAME92307
+Node: tlmgr SYNOPSIS92432
+Node: tlmgr DESCRIPTION92622
+Node: tlmgr EXAMPLES93718
+Ref: tlmgr 'tlmgr option repository http://mirror.ctan.org/systems/texlive/tlnet'94009
+Ref: tlmgr 'tlmgr update --list'94190
+Ref: tlmgr 'tlmgr update --all'94283
+Ref: tlmgr 'tlmgr info' _pkg_94439
+Node: tlmgr OPTIONS94645
+Ref: tlmgr *--repository* _url|path_95165
+Ref: tlmgr *--gui* [_action_]95890
+Ref: tlmgr *--gui-lang* _llcode_96297
+Ref: tlmgr *--debug-translation*96980
+Ref: tlmgr *--machine-readable*97183
+Ref: tlmgr *--no-execute-actions*97451
+Ref: tlmgr *--package-logfile* _file_97644
+Ref: tlmgr *--pause*97899
+Ref: tlmgr *--persistent-downloads*98054
+Ref: tlmgr *--no-persistent-downloads*98082
+Ref: tlmgr *--pin-file*98576
+Ref: tlmgr *--usermode*98794
+Ref: tlmgr *--usertree* _dir_98914
+Node: tlmgr ACTIONS99464
+Node: tlmgr help100696
+Node: tlmgr version101172
+Node: tlmgr backup [--clean[=_N_]] [--backupdir _dir_] [--all | _pkg_]...101490
+Ref: tlmgr *--backupdir* _directory_102584
+Ref: tlmgr *--all*102781
+Ref: tlmgr *--clean*[=_N_]103003
+Ref: tlmgr *--dry-run*103300
+Node: tlmgr candidates _pkg_103420
+Ref: tlmgr *candidates _pkg_* 1103707
+Node: tlmgr check [_option_]... [files|depends|executes|runfiles|all]103851
+Ref: tlmgr *files*104294
+Ref: tlmgr *depends*104429
+Ref: tlmgr *executes*104771
+Ref: tlmgr *runfiles*104889
+Ref: tlmgr *--use-svn*105001
+Node: tlmgr conf [texmf|tlmgr|updmap [--conffile _file_] [--delete] [_key_ [_value_]]]105118
+Node: tlmgr dump-tlpdb [--local|--remote]107190
+Ref: tlmgr *--local*107700
+Ref: tlmgr *--remote*107739
+Node: tlmgr generate [_option_]... _what_108161
+Ref: tlmgr *generate language*108402
+Ref: tlmgr *generate language.dat*108427
+Ref: tlmgr *generate language.def*108452
+Ref: tlmgr *generate language.dat.lua*108481
+Ref: tlmgr *generate fmtutil*108501
+Ref: tlmgr *--dest* _output_file_110738
+Ref: tlmgr *--localcfg* _local_conf_file_111314
+Ref: tlmgr *--rebuild-sys*111437
+Node: tlmgr gui112298
+Node: tlmgr info [_option_...] [collections|schemes|_pkg_...]112542
+Ref: tlmgr *--list*113747
+Ref: tlmgr *--only-installed*114026
+Ref: tlmgr *--taxonomy*114241
+Ref: tlmgr *--keyword*114253
+Ref: tlmgr *--functionality*114271
+Ref: tlmgr *--characterization*114292
+Node: tlmgr init-usertree114505
+Node: tlmgr install [_option_]... _pkg_...114931
+Ref: tlmgr *--file*115295
+Ref: tlmgr *--reinstall*115521
+Ref: tlmgr *--no-depends*115901
+Ref: tlmgr *--no-depends-at-all*116060
+Ref: tlmgr *--dry-run* 1116458
+Ref: tlmgr *--force*116576
+Node: tlmgr option116782
+Ref: tlmgr *option [show]*116955
+Ref: tlmgr *option showall*116973
+Ref: tlmgr *option _key_ [_value_]*116999
+Node: tlmgr paper120847
+Ref: tlmgr *paper [a4|letter]*121032
+Ref: tlmgr *[xdvi|pdftex|dvips|dvipdfmx|context|psutils] paper [_papersize_|--list]*121106
+Node: tlmgr path [--w32mode=user|admin] [add|remove]122133
+Node: tlmgr pinning123616
+Ref: tlmgr 'pinning show'123923
+Ref: tlmgr 'pinning add' _repo_ _pkgglob_...123996
+Ref: tlmgr 'pinning remove' _repo_ _pkgglob_...124115
+Ref: tlmgr 'pinning remove _repo_ --all'124268
+Node: tlmgr platform list|add|remove _platform_...124322
+Node: tlmgr platform set _platform_124570
+Node: tlmgr platform set auto124798
+Ref: tlmgr *--dry-run* 2125915
+Node: tlmgr postaction [--w32mode=user|admin] [--fileassocmode=1|2] [--all] [install|remove] [shortcut|fileassoc|script] [_pkg_]...126024
+Node: tlmgr print-platform127326
+Node: tlmgr restore [--backupdir _dir_] [--all | _pkg_ [_rev_]]127798
+Ref: tlmgr *--all* 1128694
+Ref: tlmgr *--backupdir* _directory_ 1128888
+Ref: tlmgr *--dry-run* 3129044
+Ref: tlmgr *--force* 1129161
+Node: tlmgr remove [_option_]... _pkg_...129189
+Ref: tlmgr *--no-depends* 1129712
+Ref: tlmgr *--no-depends-at-all* 1129774
+Ref: tlmgr *--force* 2129830
+Ref: tlmgr *--dry-run* 4130302
+Node: tlmgr repository130409
+Ref: tlmgr *repository list*130617
+Ref: tlmgr *repository list _path|tag_*130647
+Ref: tlmgr *repository add _path_ [_tag_]*130680
+Ref: tlmgr *repository remove _path|tag_*130712
+Ref: tlmgr *repository set _path_[#_tag_] [_path_[#_tag_] ...]*130766
+Node: tlmgr search [_option_...] _what_131850
+Node: tlmgr search [_option_...] --file _what_132361
+Node: tlmgr search [_option_...] --taxonomy _what_132612
+Node: tlmgr search [_option_...] --keyword _what_132923
+Node: tlmgr search [_option_...] --functionality _what_133241
+Node: tlmgr search [_option_...] --characterization _what_133579
+Node: tlmgr search [_option_...] --all _what_133919
+Ref: tlmgr *--global*134367
+Ref: tlmgr *--word*134479
+Ref: tlmgr *--list* 1134718
+Ref: tlmgr *--file* 1135064
+Ref: tlmgr *--taxonomy* 1135121
+Ref: tlmgr *--keyword* 1135133
+Ref: tlmgr *--functionality* 1135151
+Ref: tlmgr *--characterization* 1135172
+Ref: tlmgr *--all* 2135327
+Node: tlmgr uninstall135410
+Ref: tlmgr *--force* 3135664
+Node: tlmgr update [_option_]... [_pkg_]...135720
+Ref: tlmgr *--all* 3136091
+Ref: tlmgr *--self*137832
+Ref: tlmgr *--dry-run* 5138596
+Ref: tlmgr *--list* [_pkg_]138773
+Ref: tlmgr *--exclude* _pkg_139462
+Ref: tlmgr *--no-auto-remove* [_pkg_]...140155
+Ref: tlmgr *--no-auto-install* [_pkg_]...140606
+Ref: tlmgr *--reinstall-forcibly-removed*141262
+Ref: tlmgr *--backup* and *--backupdir* _directory_141826
+Ref: tlmgr *--no-depends* 2143007
+Ref: tlmgr *--no-depends-at-all* 2143210
+Ref: tlmgr *--force* 4143266
+Node: tlmgr USER MODE143692
+Node: tlmgr user mode install146503
+Node: tlmgr user mode backup; restore; remove; update147450
+Node: tlmgr user mode generate; option; paper147892
+Node: tlmgr CONFIGURATION FILE FOR TLMGR148268
+Node: tlmgr TAXONOMIES149359
+Ref: tlmgr '--keyword' 2149985
+Ref: tlmgr '--functionality' 2150070
+Ref: tlmgr '--characterization' 2150226
+Ref: tlmgr '--taxonomy' 2150367
+Node: tlmgr MULTIPLE REPOSITORIES150908
+Node: tlmgr Pinning152629
+Node: tlmgr GUI FOR TLMGR154604
+Node: tlmgr Main display155826
+Node: tlmgr Display configuration area156078
+Ref: tlmgr Status156439
+Ref: tlmgr Category156603
+Ref: tlmgr Match156789
+Ref: tlmgr Selection157049
+Ref: tlmgr Display configuration buttons157253
+Node: tlmgr Package list area157436
+Ref: tlmgr a checkbox158020
+Ref: tlmgr package name158156
+Ref: tlmgr local revision (and version)158255
+Ref: tlmgr remote revision (and version)158630
+Ref: tlmgr short description158927
+Node: tlmgr Main display action buttons158972
+Ref: tlmgr Update all installed159238
+Ref: tlmgr Update159610
+Ref: tlmgr Install159660
+Ref: tlmgr Remove159846
+Ref: tlmgr Backup160024
+Node: tlmgr Menu bar160181
+Ref: tlmgr 'tlmgr' menu160378
+Ref: tlmgr 'Options menu'160686
+Ref: tlmgr 'Actions menu'161769
+Ref: tlmgr 'Help menu'162197
+Node: tlmgr MACHINE-READABLE OUTPUT162330
+Node: tlmgr Machine-readable 'update' and 'install' output163146
+Ref: tlmgr 'location-url' _location_164428
+Ref: tlmgr 'total-bytes' _count_164644
+Ref: tlmgr _pkgname_165054
+Ref: tlmgr _status_165264
+Ref: tlmgr 'd'165342
+Ref: tlmgr 'f'165402
+Ref: tlmgr 'u'165581
+Ref: tlmgr 'r'165627
+Ref: tlmgr 'a'165750
+Ref: tlmgr 'i'165928
+Ref: tlmgr 'I'166047
+Ref: tlmgr _localrev_166149
+Ref: tlmgr _serverrev_166256
+Ref: tlmgr _size_166368
+Ref: tlmgr _runtime_166537
+Ref: tlmgr _esttot_166607
+Node: tlmgr Machine-readable 'option' output166640
+Node: tlmgr AUTHORS AND COPYRIGHT167158
+Node: Index167505

End Tag Table
diff --git a/Build/source/doc/tlbuild.texi b/Build/source/doc/tlbuild.texi
index fbbb62a8007..a490273f076 100644
--- a/Build/source/doc/tlbuild.texi
+++ b/Build/source/doc/tlbuild.texi
@@ -1941,13 +1941,6 @@ build, but the default for a non-native one) indicates that
@file{xindy} will use the installed version of @file{clisp} (which
must be identical to the one used to build @file{xindy}).
-@vindex --with-recode
-@pindex recode
-@pindex iconv
-@noindent @code{--with-recode}@*Use @file{recode} instead of @file{iconv}
-to build the @code{xindy} rules and documentation, required for some
-systems where @file{iconv} is missing or broken.
-
@node Library-specific configure options
@section Library-specific configure options
diff --git a/Build/source/libs/README b/Build/source/libs/README
index b6cc1dae8c0..30476e62d3e 100644
--- a/Build/source/libs/README
+++ b/Build/source/libs/README
@@ -18,10 +18,13 @@ freetype2 2.5.3 - checked 8mar14
gd 2.1.0 - checked 26jun13
https://bitbucket.org/libgd/gd-libgd/downloads/
+gmp 6.0.0 - checked 25mar14
+ http://ftp.gnu.org/gnu/gmp/
+
graphite2 1.2.4 - checked 2dec13
http://sourceforge.net/projects/silgraphite/files/graphite2/
-harfbuzz 0.9.28 - checked 29apr14
+harfbuzz 0.9.29 - checked 29may14
http://www.freedesktop.org/software/harfbuzz/release/
icu 53.1 (release) - checked 3apr14
@@ -30,7 +33,7 @@ icu 53.1 (release) - checked 3apr14
libpaper 1.1.24+nmu2 - checked 24oct13
ftp://ftp.de.debian.org/debian/pool/main/libp/libpaper/
-libpng 1.6.10 - checked 15mar14
+libpng 1.6.12 - checked 17jun14
http://www.libpng.org/ - used by many
http://www.libpng.org/pub/png/pngcode.html
@@ -40,10 +43,13 @@ lua 5.2.3 - checked 7dec13
luajit 2.0.3 - checked 14mar14
http://luajit.org/download/LuaJIT-2.0.3.tar.gz
+mpfr 3.1.2 - checked 13mar13
+ http://ftp.gnu.org/gnu/mpfr/
+
pixman 0.32.4 - checked 18nov13
http://cairographics.org/releases/
-poppler 0.25.2 - checked 27mar14
+poppler 0.26.1 - checked 23may14
http://poppler.freedesktop.org/ - used by luatex and xetex
potrace 1.11 - checked 12apr13
@@ -53,7 +59,7 @@ teckit 2.5.3 - checked 17mar12
http://scripts.sil.org/svn-public/teckit/TRUNK
(svn r1250 2012-03-14 19:45:41 UTC).
-xpdf 3.03 - checked 10may12
+xpdf 3.04 - checked 28may14
ftp://ftp.foolabs.com/pub/xpdf/
with modifications for pdftex
diff --git a/Build/source/tardate.ac b/Build/source/tardate.ac
index 5a9abb28cf3..67c1a7884ae 100644
--- a/Build/source/tardate.ac
+++ b/Build/source/tardate.ac
@@ -8,4 +8,4 @@ dnl
dnl --------------------------------------------------------
dnl
dnl m4-include this file to define the current TeX Live tarball version
-m4_define([tex_live_tardate], [2014-04-01])
+m4_define([tex_live_tardate], [2014-06-16])
diff --git a/Build/source/utils/README b/Build/source/utils/README
index 6adea8e717b..a878b6555f4 100644
--- a/Build/source/utils/README
+++ b/Build/source/utils/README
@@ -32,7 +32,7 @@ vlna 1.5 - checked 10may12
xindy - see just below
-xpdfopen 0.84 - checked 17may14
+xpdfopen 0.86 - checked 24may14
http://mirror.ctan.org/support/xpdfopen/
http://cs.acadiau.ca/~jdiamond/xpdfopen/
diff --git a/Build/source/version.ac b/Build/source/version.ac
index 38a160ff974..3119624225f 100644
--- a/Build/source/version.ac
+++ b/Build/source/version.ac
@@ -7,4 +7,4 @@ dnl
dnl --------------------------------------------------------
dnl
dnl m4-include this file to define the current TeX Live version
-m4_define([tex_live_version], [2014])
+m4_define([tex_live_version], [2015/dev])