diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-16 07:01:44 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-16 07:01:44 +0000 |
commit | 5867e6b1dd76c03a695dfa97d9e96c4617e1b28e (patch) | |
tree | 6507fcb8082c4cb837eb3eed032e899f6ef25f2e /emulators/rtc | |
parent | 5f50ae13d719810207140e32aa5de0a2a4a1a621 (diff) | |
download | ports-5867e6b1dd76c03a695dfa97d9e96c4617e1b28e.tar.gz ports-5867e6b1dd76c03a695dfa97d9e96c4617e1b28e.zip |
Notes
Diffstat (limited to 'emulators/rtc')
-rw-r--r-- | emulators/rtc/Makefile | 2 | ||||
-rw-r--r-- | emulators/rtc/files/rtc.c | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/emulators/rtc/Makefile b/emulators/rtc/Makefile index 401fb6672c4d..1f00a81fa2c4 100644 --- a/emulators/rtc/Makefile +++ b/emulators/rtc/Makefile @@ -6,7 +6,7 @@ # PORTNAME= rtc -PORTVERSION= 2001.09.16 +PORTVERSION= 2001.09.16.1 CATEGORIES= emulators linux MASTER_SITES= # none DISTFILES= # none 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 }; /* |