mirror of https://github.com/BOINC/boinc.git
Fixed OS X compile bug. Client configure now generates RSAEuro makefile.
svn path=/trunk/boinc/; revision=234
This commit is contained in:
parent
dcdb229574
commit
1579ce777b
File diff suppressed because it is too large
Load Diff
|
@ -63,4 +63,4 @@ AC_EGREP_CPP(yes,
|
|||
#endif
|
||||
], AC_DEFINE(unix))
|
||||
|
||||
AC_OUTPUT(Makefile)
|
||||
AC_OUTPUT(Makefile ../RSAEuro/source/Makefile)
|
||||
|
|
|
@ -242,8 +242,8 @@ int NET_XFER_SET::do_select(int max_bytes, int& bytes_transferred) {
|
|||
if (!nxp->is_connected) {
|
||||
#ifdef _WIN32
|
||||
getsockopt(fd, SOL_SOCKET, SO_ERROR, (char *)&n, (int *)&intsize);
|
||||
#elseifdef __apple__
|
||||
getsockopt(fd, SQL_SOCKET, SO_ERROR, &n, (int *)&intsize);
|
||||
#elif __APPLE__
|
||||
getsockopt(fd, SOL_SOCKET, SO_ERROR, &n, (int *)&intsize);
|
||||
#else
|
||||
getsockopt(fd, SOL_SOCKET, SO_ERROR, &n, (unsigned int *)&intsize);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue