summaryrefslogtreecommitdiff
path: root/devel/ORBit/files/patch-configure.in (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update to 0.5.14.Maxim Sobolev2002-03-121-4/+3
| | | | Notes: svn path=/head/; revision=55950
* Huh, finally implement writev(2) wrapper that actually works. Boys, never everMaxim Sobolev2001-10-291-0/+57
| | | | | | | | | | | | try to use writev(2) in a non-blocking mode, especially on sockets. Not only this makes handling of EAGAIN rather weird, but in the case of sockets makes your code subject of a ENOBUFS, which is absolutely unclear how to handle properly. *sigh* Bump PORTREVISION. Notes: svn path=/head/; revision=49333
* Undo the last commit. For not clear yet reasons it drives oaf crazy.Maxim Sobolev2001-10-291-57/+0
| | | | Notes: svn path=/head/; revision=49320
* Reimplement fix for an imcompatibility between ORBit and FreeBSD properly.Maxim Sobolev2001-10-291-0/+57
Instead of replacing writev(2) with loop based on write(2), test system limit on the number of vectors writev(2) accepts and split call to writev(2) to several calls in such a way that number of vectors in each call doesn't exceed this limit (aka UIO_MAXIOV). Bump PORTREVISION. Notes: svn path=/head/; revision=49315