[1154] in NetBSD-Development
Updated afs_nbsd_subr.c
daemon@ATHENA.MIT.EDU (Greg Hudson)
Thu Dec 14 01:40:17 1995
Date: Thu, 14 Dec 1995 01:40:02 -0500
From: Greg Hudson <ghudson@MIT.EDU>
To: netbsd-afs@MIT.EDU
I updated afs_nbsd_subr.c to recognize NetBSD 1.1.
Also, it looks like the value of the NetBSD constant is stuck at
<year><month>, so I introduced the symbolic constant NBSD_10 in
afs_nbsd_subr.c to refer to NetBSD release 1.0:
#if defined(NetBSD1_1) && (NetBSD <= 199511)
char afs_NetBSD_release[] = "1.1";
#elif defined(NetBSD1_1)
char afs_NetBSD_release[] = "1.1A";
#elif NetBSD < 1994101
#define lkm_nofunc nosys
#define NBSD_10
char afs_NetBSD_release[] = "1.0";
#else
char afs_NetBSD_release[] = "1.0A";
#endif
char afs_NetBSD_osname[] = "NetBSD";
I also modified afs_resource.c to define NEWQUEUE when NetBSD1_1 is
defined. The right answer here is probably to just desupport NetBSD
1.0 and get rid of that conditionalization altogether, but I didn't
want to do that unilaterally.