Subject: Re: What is the compiler macro that determines the version of NetBSD?
To: None <johnam@mail.kemper.org>
From: Perry E. Metzger <perry@piermont.com>
List: netbsd-help
Date: 09/11/1998 19:19:53
See the definition of __NetBSD_Version__ in sys/param.h

Perry

"John A. Maier - MIS dept." writes:
> In code I can do a 
> #ifdef __NetBSD__
> #include ...
> #endif
> 
> but I want to be able to determin the version.
> 
> i.e.
> #ifdef __NetBSD1.3.2__
> etc.
> 
> anything?
> 
> jam