From 6f6012e1e9723792395c6f8a96a3fa261ef91c56 Mon Sep 17 00:00:00 2001 From: wkj Date: Mon, 7 Nov 2005 04:47:35 +0000 Subject: Fix the build on FreeBSD 6.x. The resulting binary still seems to produce suspect statistics. --- src/cmd/auxstats/FreeBSD.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/cmd/auxstats/FreeBSD.c b/src/cmd/auxstats/FreeBSD.c index 2d0fd57e..737fe390 100644 --- a/src/cmd/auxstats/FreeBSD.c +++ b/src/cmd/auxstats/FreeBSD.c @@ -11,7 +11,9 @@ #include #include #include +#if __FreeBSD_version < 600000 #include +#endif #include #include #include @@ -137,7 +139,8 @@ int xacpi(int first) { int rv; - int val, len; + int val; + long len; len = sizeof(val); rv = sysctlbyname("hw.acpi.battery.life", &val, &len, nil, 0); @@ -154,6 +157,7 @@ xacpi(int first) } #endif +#if __FreeBSD_version < 600000 void xapm(int first) { @@ -175,6 +179,13 @@ xapm(int first) if(ai.ai_batt_life <= 100) Bprint(&bout, "battery =%d 100\n", ai.ai_batt_life); } +#else +void +xapm(int first) +{ + return; +} +#endif int rsys(char *name, char *buf, int len) -- cgit v1.2.3