<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- Sysctl.xs.orig	2013-12-26 15:39:24.130607201 -0600
+++ Sysctl.xs	2013-12-26 15:41:09.233611186 -0600
@@ -537,6 +537,7 @@
         /* the remaining custom formats are for opaque mibs */
         case FMT_MBSTAT: {
             HV *c = (HV *)sv_2mortal((SV *)newHV());
+#if __FreeBSD_version &lt; 1000037
             struct mbstat *inf = (struct mbstat *)buf;
             RETVAL = newRV((SV *)c);
             hv_store(c, "copymfail",      9, newSVuv(inf-&gt;m_mcfail), 0);
@@ -563,6 +564,7 @@
             hv_store(c, "sfallocwait",   11, newSVuv(inf-&gt;sf_allocwait), 0);
             hv_store(c, "sfiocnt",        7, newSVuv(inf-&gt;sf_iocnt), 0);
 #endif
+#endif
             break;
         }
         case FMT_NTPTIMEVAL: {
</pre></body></html>