Fix build on DragonFly. Add pptp.8 to PLIST. Bump revision.
This commit is contained in:
parent
080408306e
commit
93070c8d4d
4 changed files with 16 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.10 2006/04/14 10:32:02 rillig Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2006/05/12 09:30:55 joerg Exp $
|
||||
|
||||
DISTNAME= pptp-1.7.0
|
||||
PKGREVISION= 1
|
||||
PKGREVISION= 2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pptpclient/}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2006/03/14 13:53:57 rillig Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2006/05/12 09:30:55 joerg Exp $
|
||||
man/man8/pptp.8
|
||||
sbin/pptp
|
||||
share/doc/pptp/Documentation/DESIGN.CALLMGR
|
||||
share/doc/pptp/Documentation/DESIGN.PPTP
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
$NetBSD: distinfo,v 1.5 2006/04/14 10:32:02 rillig Exp $
|
||||
$NetBSD: distinfo,v 1.6 2006/05/12 09:30:55 joerg Exp $
|
||||
|
||||
SHA1 (pptp-1.7.0.tar.gz) = fc96e8a765bf17eb02ce1584d8e9d024b68ab5a7
|
||||
RMD160 (pptp-1.7.0.tar.gz) = 62c947379c44102945a198ddc914d5aa634db13c
|
||||
Size (pptp-1.7.0.tar.gz) = 227699 bytes
|
||||
SHA1 (patch-ab) = a03b32272157ccfbc6d2836a3220dfc2d7fbdb97
|
||||
SHA1 (patch-ab) = 01d8346064bee226adb11035d98c2f06523b8e4a
|
||||
SHA1 (patch-ac) = 8a0dd645ed0a766375a803fecda80d716c441d52
|
||||
SHA1 (patch-ad) = a037ba927c181f812ecd5c1ea2d344483d8ad4bf
|
||||
SHA1 (patch-ah) = 3a08c64c0cff8ca3d7e78ce445e7b126076c1425
|
||||
|
|
|
@ -1,9 +1,18 @@
|
|||
$NetBSD: patch-ab,v 1.3 2006/04/14 10:32:02 rillig Exp $
|
||||
$NetBSD: patch-ab,v 1.4 2006/05/12 09:30:55 joerg Exp $
|
||||
|
||||
Added more logging.
|
||||
|
||||
--- pptp.c.orig 2005-07-28 03:15:11.000000000 +0200
|
||||
+++ pptp.c 2006-03-14 13:51:22.000000000 +0100
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
-#if defined(__FreeBSD__)
|
||||
+#if defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
#include <libutil.h>
|
||||
#elif defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
#include <util.h>
|
||||
@@ -261,6 +261,8 @@ int main(int argc, char **argv, char **e
|
||||
inetaddr = get_ip_address(argv[optind]);
|
||||
optind++;
|
||||
|
|
Loading…
Reference in a new issue