aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/051_nxcomp_macos105-fdisset.full+lite.patch
Commit message (Collapse)AuthorAgeFilesLines
* workaround for Mac OS X 10.5 (051_nxcomp_macos105-fdisset.full+lite.patch(Mihai Moldovan2015-02-091-82/+0
| | | | | | | | | | | The Mac OS X 10.5 SDK requires the second argument of FD_ISSET to be writeable, although it does only access the data. Given that we have a const pointer for a const struct, copy and pass that. . Note that this is merely a workaround for OS X 10.5, as 10.6 and later define the second argument of FD_ISSET as const struct const *foo, too. . It is safe, as data is accessed read-only by FD_ISSET, even on 10.5.
* Pass address of fd_set structs on the stack to the FD_ISSET macro/function, ↵Mike Gabriel2012-03-011-6/+6
| | | | instead of the struct itself.
* Add patch: 051_nxcomp_macos105-fdisset.full+lite.patch, work around issue in ↵Mihai Moldovan2012-02-291-0/+82
Mac OS X 10.5 SDK.