diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-20 11:05:54 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-20 11:05:54 +0000 |
commit | 104c5eb2424d5aa0d8743bad75d3072cad47083e (patch) | |
tree | 6f84f09c3d19e12970074965d8adb5fe8264fb23 /devel | |
parent | f66df454649b7a6a377b7d20c35bed2fb1cb2d19 (diff) | |
download | pkgsrc-104c5eb2424d5aa0d8743bad75d3072cad47083e.tar.gz |
sys/mman.h needs sys/types.h on DragonFly. Also include sys/stat.h
to get fstat and struct stat on DragonFly.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/fastdep/distinfo | 4 | ||||
-rw-r--r-- | devel/fastdep/patches/patch-ab | 11 |
2 files changed, 10 insertions, 5 deletions
diff --git a/devel/fastdep/distinfo b/devel/fastdep/distinfo index 2ad34717c02..660ebb2480c 100644 --- a/devel/fastdep/distinfo +++ b/devel/fastdep/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2005/02/23 22:24:13 agc Exp $ +$NetBSD: distinfo,v 1.5 2005/12/20 11:05:54 joerg Exp $ SHA1 (fastdep-0.16.tar.gz) = e249ac93129f81e0aff791a442ef2dfd05edad9f RMD160 (fastdep-0.16.tar.gz) = b805d3db264e46de9e68cbf3104c874d9fa73ddc Size (fastdep-0.16.tar.gz) = 70374 bytes SHA1 (patch-aa) = 6704d991487d570da3cf475d03f1620febabc3aa -SHA1 (patch-ab) = 90d9502052863da85a9312822a70850a1d4429fe +SHA1 (patch-ab) = 60a89863baaee60c25842dd17fb1ba5cbb15652e diff --git a/devel/fastdep/patches/patch-ab b/devel/fastdep/patches/patch-ab index 99157a500b9..16569580801 100644 --- a/devel/fastdep/patches/patch-ab +++ b/devel/fastdep/patches/patch-ab @@ -1,9 +1,14 @@ -$NetBSD: patch-ab,v 1.1 2003/12/22 10:31:45 jmmv Exp $ +$NetBSD: patch-ab,v 1.2 2005/12/20 11:05:54 joerg Exp $ ---- MappedFile.cc.orig 2003-10-29 17:44:39.000000000 +0100 +--- MappedFile.cc.orig 2003-10-29 16:44:39.000000000 +0000 +++ MappedFile.cc -@@ -7,6 +7,7 @@ +@@ -4,9 +4,12 @@ + #include <io.h> + #define PATH_MAX MAX_PATH + #else ++#include <sys/types.h> #include <sys/mman.h> ++#include <sys/stat.h> #include <unistd.h> #include <fcntl.h> +#include <stdio.h> |