summaryrefslogtreecommitdiff
path: root/net/openafs/files/patch-src-rx-rx_kernel.h
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-05-09 15:03:38 +0000
committerRene Ladan <rene@FreeBSD.org>2019-05-09 15:03:38 +0000
commitb8b8fa5aeb1df824ed5374149d0a7377dd0c1cd9 (patch)
tree67d5f350f6c92b847a528d27db9960acb190f10e /net/openafs/files/patch-src-rx-rx_kernel.h
parentRestore "hs-" package name prefix for Haskell packages. (diff)
Remove expired ports:
2019-05-08 databases/ruby-odbc: Broken for more than 6 months 2019-05-08 databases/rubygem-dbd-odbc: Broken for more than 6 months 2019-05-08 devel/dlangui: Broken for more than 6 months 2019-05-08 editors/dlangide: Broken for more than 6 months 2019-05-08 emulators/desmume: Broken for more than 6 months 2019-05-08 emulators/yabause: Broken for more than 6 months 2019-05-08 emulators/yape: Broken for more than 6 months 2019-05-08 games/armagetron: Broken for more than 6 months 2019-05-08 games/boswars: Broken for more than 6 months 2019-05-08 games/ceferino: Broken for more than 6 months 2019-05-08 games/chanta: Broken for more than 6 months 2019-05-08 games/d2x-xl: Broken for more than 6 months 2019-05-08 games/drcreep: Broken for more than 6 months 2019-05-08 games/frobtads: Broken for more than 6 months 2019-05-08 games/paintown: Broken for more than 6 months 2019-05-08 games/pykawari: Broken for more than 6 months 2019-05-08 games/stepmania-devel: Broken for more than 6 months 2019-05-08 games/tinymux: Broken for more than 6 months 2019-05-08 games/voxelands: Broken for more than 6 months 2019-05-08 games/voxelands-server: Broken for more than 6 months 2019-05-08 games/warsow: Broken for more than 6 months 2019-05-08 graphics/appleseed: Broken for more than 6 months 2019-05-08 graphics/apvlv: Broken for more than 6 months 2019-05-08 graphics/qslim: Broken for more than 6 months 2019-05-08 graphics/rawstudio: Broken for more than 6 months 2019-05-08 graphics/tulip: Broken for more than 6 months 2019-05-08 lang/qore: Broken for more than 6 months 2019-05-08 mail/milter-manager: Broken for more than 6 months 2019-05-08 math/goblin: Broken for more than 6 months 2019-05-08 math/mosesdecoder: Broken for more than 6 months 2019-05-08 multimedia/asdcplib: Broken for more than 6 months 2019-05-08 net/crtmpserver: Broken for more than 6 months 2019-05-08 net/linuxigd: Abandonware; use net/miniupnpd instead 2019-05-08 net/openafs: Broken for more than 6 months 2019-05-08 security/quantis: Broken for more than 6 months 2019-05-08 sysutils/boxbackup: Broken for more than 6 months 2019-05-08 sysutils/grub2-efi: Broken for more than 6 months 2019-05-08 sysutils/grub2-pcbsd: Broken for more than 6 months 2019-05-08 sysutils/mdcp: Broken for more than 6 months 2019-05-08 sysutils/sbsigntool: Broken for more than 6 months 2019-05-08 www/py-cherrypy-old: Lates version is in tree and no dependent ports
Notes
Notes: svn path=/head/; revision=501106
Diffstat (limited to 'net/openafs/files/patch-src-rx-rx_kernel.h')
-rw-r--r--net/openafs/files/patch-src-rx-rx_kernel.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/net/openafs/files/patch-src-rx-rx_kernel.h b/net/openafs/files/patch-src-rx-rx_kernel.h
deleted file mode 100644
index 2ed99640f113..000000000000
--- a/net/openafs/files/patch-src-rx-rx_kernel.h
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/rx/rx_kernel.h.orig 2017-12-05 14:52:48 UTC
-+++ src/rx/rx_kernel.h
-@@ -58,12 +58,20 @@ extern int osi_utoa(char *buf, size_t len, unsigned lo
- #endif
- #define rx_ifnet_mtu(x) (x)->if_mtu
- #define rx_ifnet_flags(x) (x?(x)->if_flags:0)
--#if defined(AFS_OBSD46_ENV) || defined(AFS_FBSD81_ENV)
-+#if __FreeBSD_version >= 1100032
-+#define rx_ifaddr_withnet(x) ifa_ifwithnet(x, 0, RT_ALL_FIBS)
-+#elif defined(AFS_OBSD46_ENV) || defined(AFS_FBSD81_ENV)
- #define rx_ifaddr_withnet(x) ifa_ifwithnet(x, 0)
- #else
- #define rx_ifaddr_withnet(x) ifa_ifwithnet(x)
- #endif
-+#if defined(AFS_FBSD81_ENV)
-+#if defined(if_metric)
- #define rx_ifnet_metric(x) (x?(x)->if_data.ifi_metric:0)
-+#else
-+#define rx_ifnet_metric(x) (x?(x)->if_metric:0)
-+#endif
-+#endif
- #define rx_ifaddr_ifnet(x) (x?(x)->ifa_ifp:0)
- #define rx_ifaddr_address_family(x) (x)->ifa_addr->sa_family
- #define rx_ifaddr_address(x, y, z) memcpy(y, (x)->ifa_addr, z)