diff options
author | assar <assar> | 2000-06-18 13:01:34 +0000 |
---|---|---|
committer | assar <assar> | 2000-06-18 13:01:34 +0000 |
commit | 4abf13959e3d38719d73d42e9836d07fef1022e3 (patch) | |
tree | 4fc3f5a9d8f116e9e6c84849688476240954c24c /net/arla/patches | |
parent | e7aef42a77457971bb8d0863b93f1f218a48061e (diff) | |
download | pkgsrc-4abf13959e3d38719d73d42e9836d07fef1022e3.tar.gz |
Add new patch to make sure that the test for vfs_getnewfsid works
correctly on 1.4ZD, from "Dr. Lex Wennmacher" <wennmach@geo.Uni-Koeln.DE>
Diffstat (limited to 'net/arla/patches')
-rw-r--r-- | net/arla/patches/patch-al | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/net/arla/patches/patch-al b/net/arla/patches/patch-al new file mode 100644 index 00000000000..8d2b2c1553c --- /dev/null +++ b/net/arla/patches/patch-al @@ -0,0 +1,18 @@ +$NetBSD: patch-al,v 1.1 2000/06/18 13:01:36 assar Exp $ + +The prototype for vfs_getnewfsid is defined in <sys/vnode.h>, so in order +to successfully test for the number of arguments, make sure that this header +file gets included. This patch is required to get arla to compile on +NetBSD-1.4ZD. + +--- configure.orig Sun Jun 18 11:32:44 2000 ++++ configure Sun Jun 18 11:40:40 2000 +@@ -9976,6 +9976,7 @@ + #ifdef HAVE_SYS_MODULE_H + #include <sys/module.h> + #endif ++#include <sys/vnode.h> + #include <sys/mount.h> + + int main() { + |