Fixed OS X compile bug. Client configure now generates RSAEuro makefile.

svn path=/trunk/boinc/; revision=234
This commit is contained in:
Eric Heien 2002-07-22 21:25:35 +00:00
parent dcdb229574
commit 1579ce777b
3 changed files with 3126 additions and 1329 deletions

4449
client/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -63,4 +63,4 @@ AC_EGREP_CPP(yes,
#endif
], AC_DEFINE(unix))
AC_OUTPUT(Makefile)
AC_OUTPUT(Makefile ../RSAEuro/source/Makefile)

View File

@ -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