From 5867e6b1dd76c03a695dfa97d9e96c4617e1b28e Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Sun, 16 Sep 2001 07:01:44 +0000 Subject: - Conditionalize bmaj and kqfilter in cdevsw. --- emulators/rtc/files/rtc.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'emulators/rtc/files/rtc.c') diff --git a/emulators/rtc/files/rtc.c b/emulators/rtc/files/rtc.c index 9eb6a90dcf4d..b78ae8727c48 100644 --- a/emulators/rtc/files/rtc.c +++ b/emulators/rtc/files/rtc.c @@ -97,7 +97,12 @@ static struct cdevsw rtc_cdevsw = { /* dump */ nodump, /* psize */ nopsize, /* flags */ 0, - /* bmaj */ -1 +#if __FreeBSD_version <= 500018 + /* bmaj */ -1, +#endif +#if __FreeBSD_version >= 500018 || __FreeBSD_version >= 430000 + /* kqfilter */ nokqfilter, +#endif }; /* -- cgit v1.2.3