diff options
author | pav <pav@FreeBSD.org> | 2009-07-26 20:11:19 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-07-26 20:11:19 +0800 |
commit | 6bfbc7961c6a3eb274aa6686ceb8ee43f501c9d2 (patch) | |
tree | a50124ffa420a1be15e29bd5340730dbc6e2f0e3 /net | |
parent | 8d03164e134a7cead82d8fc8a525718a7dd3e193 (diff) | |
download | freebsd-ports-gnome-6bfbc7961c6a3eb274aa6686ceb8ee43f501c9d2.tar.gz freebsd-ports-gnome-6bfbc7961c6a3eb274aa6686ceb8ee43f501c9d2.tar.zst freebsd-ports-gnome-6bfbc7961c6a3eb274aa6686ceb8ee43f501c9d2.zip |
- Unbreak on 8.X
PR: ports/137147
Submitted by: Andrey <nsand@sura.ru>
Diffstat (limited to 'net')
-rw-r--r-- | net/skyfish/files/patch-8x | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/skyfish/files/patch-8x b/net/skyfish/files/patch-8x new file mode 100644 index 000000000000..780b3c8f9d0f --- /dev/null +++ b/net/skyfish/files/patch-8x @@ -0,0 +1,15 @@ +--- module/drv.h.orig 2008-10-14 12:50:44.000000000 +0400 ++++ module/drv.h 2009-07-23 22:03:04.000000000 +0400 +@@ -89,7 +89,12 @@ + if (fifobuf == NULL) { + printf("no memory for buffer\n"); + return -1;} ++#if __FreeBSD_version < 800000 + knlist_init(&echo_rsel.si_note, NULL, NULL, NULL, NULL); ++#else ++ knlist_init(&echo_rsel.si_note, NULL, NULL, NULL, NULL,NULL); ++#endif ++ + socketlock = 0; + break; + case MOD_UNLOAD: |