Merge pull request #1481 from jow-/opennhrp-musl-compat

opennhrp: fix musl compatibility
This commit is contained in:
Steven Barth 2015-07-16 17:52:43 +02:00
commit 75dca1b19e
2 changed files with 22 additions and 2 deletions

View file

@ -1,5 +1,5 @@
# #
# Copyright (C) 2009-2011 OpenWrt.org # Copyright (C) 2009-2015 OpenWrt.org
# Copyright (C) 2009 Jakob Pfeiffer # Copyright (C) 2009 Jakob Pfeiffer
# Copyright (C) 2014 Artem Makhutov # Copyright (C) 2014 Artem Makhutov
# #
@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=opennhrp PKG_NAME:=opennhrp
PKG_VERSION:=0.14.1 PKG_VERSION:=0.14.1
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_MAINTAINER:=Artem Makhutov <artem@makhutov.org> PKG_MAINTAINER:=Artem Makhutov <artem@makhutov.org>
PKG_LICENSE:=MIT License PKG_LICENSE:=MIT License

View file

@ -0,0 +1,20 @@
--- a/nhrp/opennhrp.c
+++ b/nhrp/opennhrp.c
@@ -9,6 +9,7 @@
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
+#include <fcntl.h>
#include <malloc.h>
#include <stddef.h>
#include <string.h>
--- a/nhrp/nhrp_common.h
+++ b/nhrp/nhrp_common.h
@@ -12,6 +12,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <sys/time.h>
+#include <sys/types.h>
#include <linux/if_ether.h>
struct nhrp_interface;