From owner-freebsd-java Thu Apr 1 13:15:40 1999 Delivered-To: freebsd-java@freebsd.org Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id D03E515041 for ; Thu, 1 Apr 1999 13:15:38 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id PAA10728; Thu, 1 Apr 1999 15:15:16 -0600 (CST) Date: Thu, 1 Apr 1999 15:15:16 -0600 (CST) From: Steve Price To: Patrick Gardella Cc: freebsd-java@FreeBSD.ORG, Albrecht Kleine Subject: Re: JIT for ELF JDK In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 1 Apr 1999, Patrick Gardella wrote: # That's how it was defined already... # #define TYAASM_S # #include "tyaconfig.h" # # #ifdef FREEBSD # #include "tyaasm_FreeBSD.S" # #else # #include "tyaasm.S" # #endif Apply the patch. It will ask about if it is reversed. Answer yes. By mistake I did a 'diff -u tya.S tya.S.orig' instead of the other way around. Here's another more correct patch just in case. --- tya.S.orig Thu Apr 1 14:55:33 1999 +++ tya.S Thu Apr 1 14:58:33 1999 @@ -4,7 +4,7 @@ #define TYAASM_S #include "tyaconfig.h" -#ifdef FREEBSD +#if defined(FREEBSD) && !defined(__ELF__) #include "tyaasm_FreeBSD.S" #else #include "tyaasm.S" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message