Skip to content

Commit

Permalink
Apply patch mumble-voip#960: add preprocessor #if for OpenBSD
Browse files Browse the repository at this point in the history
It seems the include file <netinet/in_systm.h> has to be included not only by FreeBSD but also OpenBSD, as reported and patch supplied in mumble-voip#960.
  • Loading branch information
Kissaki committed Jun 4, 2013
1 parent 44202b2 commit b0707fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/murmur/murmur_pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ extern "C" {
#endif
#include <pwd.h>
#include <grp.h>
#ifdef __FreeBSD__
#if defined __FreeBSD__ || defined __OpenBSD__
#include <netinet/in_systm.h>
#endif
#include <netinet/in.h>
Expand Down

0 comments on commit b0707fd

Please sign in to comment.