From 05938d1eea8dc49ed433302c3dbeac1f65ed5ce8 Mon Sep 17 00:00:00 2001 From: "ramiro%netscape.com" Date: Sun, 6 Sep 1998 19:42:08 +0000 Subject: [PATCH] BSD/OS 3.x and 4.x no longer define ___386BSD__ (which really existed only for backward compatibility with the old Jolitz BSD releases). Anyways, this patch makes it compile again. Thanks to Bert Driehuis . --- cmd/xfe/mozilla.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/xfe/mozilla.c b/cmd/xfe/mozilla.c index e43ab5a9f0d..ce3a28bddbc 100644 --- a/cmd/xfe/mozilla.c +++ b/cmd/xfe/mozilla.c @@ -1960,6 +1960,8 @@ build_user_agent_string(char *versionLocale) strcat (buf, "NetBSD"); #elif defined(__386BSD__) strcat (buf, "BSD/386"); +#elif defined(__bsdi__) + strcat (buf, "BSD/OS"); #elif defined(__osf__) strcat (buf, "OSF1"); #elif defined(AIXV3)