Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
* Merge pull request from Chris Williams (bingos) to fix "redefinition
of typedef" errors with v5.19.4 and above
Updating during the freeze, even though this isn't a leaf, because
the only change is our local patch having been merged upstream (and
the freeze only just started). FWIW, mosh still works.
Changelog:
2010-10-11 Todd Rinaldo <toddr@cpan.org>
* CPAN testers clean. Bumping to release version 1.10
2010-10-04 Todd Rinaldo <toddr@cpan.org>
* RT 60788 - Better error reporting on Operating Systems
that can't set a controlling terminal e.g. BeOS
* Bump to 1.09_01
2010-10-04 Todd Rinaldo <toddr@cpan.org>
* CPAN testers looks clean. Internal testing done on perl 5.6
* Bump version to 1.09 and release to CPAN
- removed patch-ab
ChangeLog:
2009-02-05 Roland Giersig <rgiersig@cpan.org>
* v1.08
* Makefile.PL, Tty.xs: added support for posix_openpt(),
thanks to Ed Schouten for providing a patch
patch-ab is only an unintrusive short-term fix, discussion with the authors
how to fix it correctly has started.
NetBSD >= 3.0 supports grantpt() but it invalidates the slave
FD (see grantpt(3) on NetBSD) obtained through openpty() so we discard
the (now invalid) descriptor for the slave tty. This causes Tty.xs to open
the slave tty again.
The issue should be really fixed by using posix_openpt() instead of
openpty(). The functions posix_openpt(), grantpt(), unlockpt()
and ptsname() belong together and should be used ahead of
all the other ways to create the master and slave tty, not just
on NetBSD. See also
http://www.opengroup.org/onlinepubs/009695399/functions/posix_openpt.html
additions to the API and a complete rewrite of the way a pty is allocated,
and the use of openpty() in *BSD to open the allocated pty, and other bug
fixes.
We had to fix Makefile.PL to correctly invoke the preprocessor. The changes
have been forwarded to the author.
This closes pkg/15896 by Shell Hung <shell@shellhung.org>.