diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-17 00:10:05 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-17 00:12:42 +0200 |
commit | ba31ff7d5e8c8f51b5c467bc1b046e77afd1673c (patch) | |
tree | 898fe92b704ac71a9062795bc7919414aa4c717a /net/pptpd/Makefile | |
parent | 4116e327afee80aaea33a16358f5f7c0da687bec (diff) |
pptpd: fix musl compatibility
- Ship a net/ppp_defs.h replacement header since musl does not provide one
but pppd/pppd.h provided by pppd is needing it.
- Replace deprecated MSG_TRYHARD flag with the proper MSG_DONTROUTE one
- Unconditionally include string.h in bcrelay to avoid undeclared memset()
and strcpy() warnings.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'net/pptpd/Makefile')
-rw-r--r-- | net/pptpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/pptpd/Makefile b/net/pptpd/Makefile index a2fb91fa9..d17d1962e 100644 --- a/net/pptpd/Makefile +++ b/net/pptpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pptpd PKG_VERSION:=1.4.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/poptop |