From 421fe25c125be73d6f5534a7df4bd1e4ec26fbb2 Mon Sep 17 00:00:00 2001 From: jhay Date: Sat, 23 Jan 1999 10:59:29 +0000 Subject: [PATCH] __FreeBSD__ is also used here. Forgotten by: Lots of people. Pointed out by: make world. --- usr.bin/xlint/xlint/xlint.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.bin/xlint/xlint/xlint.c b/usr.bin/xlint/xlint/xlint.c index e4ad124327ca..84799b44db6a 100644 --- a/usr.bin/xlint/xlint/xlint.c +++ b/usr.bin/xlint/xlint/xlint.c @@ -325,7 +325,9 @@ main(argc, argv) appcstrg(&cppflags, "-$"); appcstrg(&cppflags, "-C"); appcstrg(&cppflags, "-Wcomment"); -#if defined (__FreeBSD__) && (__FreeBSD__ == 3) +#if defined (__FreeBSD__) && (__FreeBSD__ == 4) + appcstrg(&cppflags, "-D__FreeBSD__=4"); +#elif defined (__FreeBSD__) && (__FreeBSD__ == 3) appcstrg(&cppflags, "-D__FreeBSD__=3"); #elif defined (__FreeBSD__) && (__FreeBSD__ == 2) appcstrg(&cppflags, "-D__FreeBSD__=2");