We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Here are the changes I had to make to build rsmb on OS X 10.11.5 running version 7.1.3 of the command line tools, for whoever might find them helpful:
In the makefile, change: CFLAGS=-Wall to CFLAGS=-Wall -D_XOPEN_SOURCE
CFLAGS=-Wall
CFLAGS=-Wall -D_XOPEN_SOURCE
and in Socket.c on the one line where it occurs, change IPV6_ADD_MEMBERSHIP to IPV6_JOIN_GROUP
IPV6_ADD_MEMBERSHIP
IPV6_JOIN_GROUP
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here are the changes I had to make to build rsmb on OS X 10.11.5 running version 7.1.3 of the command line tools, for whoever might find them helpful:
In the makefile, change:
CFLAGS=-Wall
to
CFLAGS=-Wall -D_XOPEN_SOURCE
and in Socket.c on the one line where it occurs, change
IPV6_ADD_MEMBERSHIP
toIPV6_JOIN_GROUP
The text was updated successfully, but these errors were encountered: