teTeX-2.0.1

2003-02-16 Thread Thomas Esser
===
   teTeX 2.0.1
===

  This is the announce of teTeX-2.0.1, a TeX distribution for UNIX
  compatible systems.


===
  General disclaimer:
===

This is a bugfix release, with only a few changes. See the file 
ANNOUNCE-2.0 for more information.

===
  Changes in this release:
===

In the src tarball:
* fix a bug that I introduced in dvipdfm (in my attempt to
  stop using the return value of sprintf)
* fix a configure bug in texinfo
* add dvipdft script to dvipdfm
* \usepackage{palatcm} for TETEXDOC
* fix a bug in texdoctk related to calling a web browser
* texk/kpathsea/Makefile.in: use % instead of @ (AFS fix)
* fmutuil --enablefmt no longer returns error code if format is
  already enabled
* mv tcdialog support files from texmf to src tarball
* remove DO_TEXLINKS variable from texconfig
* update texk/etc/texinfo.tex
* make usre that mf-nowin works without mf
* additions to INSTALL by Harald Harders (thanks!)
* texinfo update: 4.4 + bugfix - 4.5
* fix minor typo in texconfig
* use tex --parse-first-line in makempx.in
* small fixes to texk/etc/autoconf/acspecific.m4
* fix updmap for CM-Super fonts
* portability fix for libs/t1lib/t1lib.ac
* small updates to texk/tetex/doc

In the texmf tarball:
* was package added
* update Catalogue
* update tex/texinfo/texinfo.tex
* mv tcdialog support files from texmf to src tarball
* add afm files for tx/pxfonts
* update endnotes.sty
* update tocbibind, wrapfig, uktug-faq
* updatex doc/help/tds.dvi
* remove ragged2e.bug

===
  The files / installation
===

  You can get teTeX-2.0.1 from the following server:
ftp://cam.ctan.org/tex-archive/systems/unix/teTeX/2.0/distrib/   (UK)

  Other servers will follow shortly:
ftp://dante.ctan.org/tex-archive/systems/unix/teTeX/2.0/distrib/ (GER)
ftp://tug.ctan.org/tex-archive/systems/unix/teTeX/2.0/distrib/   (US)

  A full list of mirrors is available here:
ftp://cam.ctan.org/tex-archive/CTAN.sites

  From these servers, you need the following files for teTeX-2.0:

  sources of the programs (required):
== tetex-src-2.0.1.tar.gz

  support tree with fonts / macros (required):
== tetex-texmf-2.0.1.tar.gz

  sources for parts of the texmf tarball (optional):
== tetex-texmfsrc-2.0.1.tar.gz

  The installation instructions are included in the tetex-src-2.0.1.tar.gz
  archive as files INSTALL (complete instructions) and QuickInstall
  (short version).


Thomas Esser, February 2003



Re: texinfo configure bug

2003-02-16 Thread Karl Berry
diff -ru /build/texinfo-4.5/configure.ac ./configure.ac
--- /build/texinfo-4.5/configure.ac Wed Feb  5 01:40:19 2003
+++ ./configure.ac  Sun Feb 16 01:29:26 2003
@@ -105,7 +105,7 @@
  LIBS=$oldLIBS -l$termlib
fi
AC_TRY_LINK(, 
-#ifdef HAVE_NCURSES_TERMCAP_H
+[#ifdef HAVE_NCURSES_TERMCAP_H
 #include ncurses/termcap.h
 #else
 #ifdef HAVE_TERMCAP_H
@@ -121,10 +121,10 @@
 /* Make sure all variables actually exist.  AIX 4.3 has ospeed but no BC.
--Andreas Ley [EMAIL PROTECTED], 24 Aug 2000.  */
 BC++;
-UP++
+UP++;
 PC++;
 return ospeed != 0;
-, ac_cv_var_ospeed=$trylib; break)
+], ac_cv_var_ospeed=$trylib; break)
 done
 LIBS=$oldLIBS
 )

I installed this change.  Thanks much.