From: Meethune B. <mee...@gm...> - 2009-01-04 23:01:15
|
Signed-off-by: Meethune Bhowmick <mee...@gm...> --- src/simclist.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/simclist.c b/src/simclist.c index e9061bd..0bfc2c0 100755 --- a/src/simclist.c +++ b/src/simclist.c @@ -52,6 +52,11 @@ /* convert 64bit integers from network to host format */ #define ntoh64(x) (hton64(x)) +/* OpenBSD does not have EPROTO */ +#ifndef EPROTO +#define EPROTO EINTR +#endif + /* disable asserts */ #ifndef SIMCLIST_DEBUG #define NDEBUG -- 1.6.1 |