Skip to content

Commit 8797c9e

Browse files
committed
Remove mentions of NetBSD 2.0 from README.
And don't check for it when starting up, it's 15 years old.
1 parent c288421 commit 8797c9e

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

README

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ contributing to SBCL.
3232

3333
SYSTEM-SPECIFIC HINTS
3434

35-
for NetBSD:
36-
NetBSD 2.0 and above are required because of the lack of needed
37-
signal APIs in NetBSD 1.6 and earlier.
38-
3935
for OpenBSD 6.0 and newer:
4036
SBCL must be built and run from a filesystem with the "wxallowed"
4137
mount option, such as /usr/local in the default install.

src/runtime/bsd-os.c

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -328,21 +328,6 @@ os_install_interrupt_handlers(void)
328328
static void netbsd_init()
329329
{
330330
struct rlimit rl;
331-
int mib[2], osrev;
332-
size_t len;
333-
334-
/* Are we running on a sufficiently functional kernel? */
335-
mib[0] = CTL_KERN;
336-
mib[1] = KERN_OSREV;
337-
338-
len = sizeof(osrev);
339-
sysctl(mib, 2, &osrev, &len, NULL, 0);
340-
341-
/* If we're older than 2.0... */
342-
if (osrev < 200000000) {
343-
fprintf(stderr, "osrev = %d (needed at least 200000000).\n", osrev);
344-
lose("NetBSD kernel too old to run sbcl.");
345-
}
346331

347332
/* NetBSD counts mmap()ed space against the process's data size limit,
348333
* so yank it up. This might be a nasty thing to do? */

0 commit comments

Comments
 (0)