diff options
author | joerg <joerg> | 2006-05-12 09:30:55 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-05-12 09:30:55 +0000 |
commit | 67b52a68903502080bac1a6e2bc4585886d457e1 (patch) | |
tree | 142b00b2eee363b75eb53662ec2a64b3cf8fcd90 /net/pptp/patches | |
parent | 26f0c531efe8b4465f36a908945ec3c297838033 (diff) | |
download | pkgsrc-67b52a68903502080bac1a6e2bc4585886d457e1.tar.gz |
Fix build on DragonFly. Add pptp.8 to PLIST. Bump revision.
Diffstat (limited to 'net/pptp/patches')
-rw-r--r-- | net/pptp/patches/patch-ab | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net/pptp/patches/patch-ab b/net/pptp/patches/patch-ab index bd25f6b4968..f2e630167b6 100644 --- a/net/pptp/patches/patch-ab +++ b/net/pptp/patches/patch-ab @@ -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++; |