Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Apr 1999 15:15:16 -0600 (CST)
From:      Steve Price <sprice@hiwaay.net>
To:        Patrick Gardella <patrick@cre8tivegroup.com>
Cc:        freebsd-java@FreeBSD.ORG, Albrecht Kleine <kleine@ak.sax.de>
Subject:   Re: JIT for ELF JDK
Message-ID:  <Pine.OSF.4.10.9904011512030.22229-100000@fly.HiWAAY.net>
In-Reply-To: <XFMail.990401160934.patrick@cre8tivegroup.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.OSF.4.10.9904011512030.22229-100000>