summaryrefslogtreecommitdiff
path: root/security/putty/files/mbrtowc.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2004-02-13PuTTY is a client program for the SSH, Telnet and Rlogin network protocols.Dirk Meyer1-21/+48
These protocols are all used to run a remote session on a computer, over a network. PuTTY implements the client end of that session: the end at which the session is displayed, rather than the end at which it runs. WWW: http://www.chiark.greenend.org.uk/~sgtatham/putty/
2002-09-17- C++ support: fix to work also on -current, work around broken exceptionAlexander Leidinger1-5/+19
handling when generating shared objects with binutils/ld 2.12.[0,1], link in the icc C++ ABI definitions not those of gcc - remove libcprts (STL): it has unresolvable glibc dependencies in both, dynamic and static, versions, therefore is not usable and entirely unneeded when libstlport is used instead - add libimf (Intel's optimized math functions library), while there's no measurable speed improvement (at least for the functions tested) in comparison to FreeBSD's libm beyond the "normal" icc vs. gcc boost icc occasionally produces code depending on libimf when told to optimize for Pentium 4 - replace the ld-script with a wrapper written in C as (c)sh is a bit limited and long winded for that purpose - minor stuff and cleanup Submitted by: marius@alchemy.franken.de
2002-08-20- add category: develAlexander Leidinger1-5/+8
- use reinplace command where appropriate - gzip man page - clarify download instructions (1) - fix typo in a comment (2) - preparation for successfull C++ compiles (2, minor changes by me) Even if I bumped the port revision for the C++ parts, there's no need to update yet, wait until I commit the icc-stlport. Requested by: mi (1) Submitted by: Marius Strobl <marius@alchemy.franken.de> (2)
2000-12-08* Remove the Linux -dynamic-linker specification from the `ld' execution.David E. O'Brien1-0/+35
Luckly our `ld' knows the name of our dynamic linker and DTRT. * Remove the DECpaq shared libs from the standard search dir as linking with them gives unresolved symbols. Thus we'll use the .a's for now. * Add the symbols __errno_location, __ieee_get_fp_control, and __ieee_set_fp_control (mapped to native interfaces) to the static Compaq Portable Math Library. Thus all symbols are resolved. This allows `CC=ccc' to build fully native FreeBSD Alpha binaries.