Created attachment 2718[details]
OpenBSD build fixes
The attached diff enables non i386 OpenBSD platforms (tested on amd64/i386) and fixes include order.
Not including the following hunk found in the local OpenBSD patches for openarena which while it compiled in the end looks wrong
Index: code/client/libmumblelink.c
===================================================================
--- code/client/libmumblelink.c (revision 1997)
+++ code/client/libmumblelink.c (working copy)
@@ -101,7 +101,11 @@
return 0;
snprintf(file, sizeof (file), "/MumbleLink.%d", getuid());
+#ifdef __OpenBSD__
+ shmfd = open(file, O_RDWR, S_IRUSR | S_IWUSR);
+#else
shmfd = shm_open(file, O_RDWR, S_IRUSR | S_IWUSR);
+#endif
if(shmfd < 0) {
return -1;
}
What is the correct way of dealing with a lack of shm_open here?
I have no idea. Yes, the call to "open" seems wrong... though I don't particularly feel inclined to do much research to accomodate this border case. Guess OpenBSD users will have to live without mumble support for the time being.
Thanks for providing the patch, committed r2008
Created attachment 2718 [details] OpenBSD build fixes The attached diff enables non i386 OpenBSD platforms (tested on amd64/i386) and fixes include order. Not including the following hunk found in the local OpenBSD patches for openarena which while it compiled in the end looks wrong Index: code/client/libmumblelink.c =================================================================== --- code/client/libmumblelink.c (revision 1997) +++ code/client/libmumblelink.c (working copy) @@ -101,7 +101,11 @@ return 0; snprintf(file, sizeof (file), "/MumbleLink.%d", getuid()); +#ifdef __OpenBSD__ + shmfd = open(file, O_RDWR, S_IRUSR | S_IWUSR); +#else shmfd = shm_open(file, O_RDWR, S_IRUSR | S_IWUSR); +#endif if(shmfd < 0) { return -1; } What is the correct way of dealing with a lack of shm_open here?