summaryrefslogtreecommitdiff
path: root/java/tya/files
diff options
context:
space:
mode:
Diffstat (limited to 'java/tya/files')
-rw-r--r--java/tya/files/patch-ab26
-rw-r--r--java/tya/files/patch-ac14
-rw-r--r--java/tya/files/patch-tya.c38
-rw-r--r--java/tya/files/patch-tyaruntime.c13
4 files changed, 0 insertions, 91 deletions
diff --git a/java/tya/files/patch-ab b/java/tya/files/patch-ab
deleted file mode 100644
index 8bfb5da2f694..000000000000
--- a/java/tya/files/patch-ab
+++ /dev/null
@@ -1,26 +0,0 @@
---- Makefile.in 2000/09/10 20:08:34 1.1
-+++ Makefile.in 2000/09/10 20:08:38
-@@ -12,12 +12,12 @@
- #TARGETFLAGS =-DDEBUG
-
- # GCC specific options:
--COPTFLAGS=-O3
-+#COPTFLAGS=-O3
- #COPTFLAGS=-O6 -v
-
-
- # CPU specific options:
--POPTFLAGS=-m486 -malign-loops=4 -malign-functions=4 -malign-jumps=4
-+POPTFLAGS=-malign-loops=4 -malign-functions=4 -malign-jumps=4
-
-
- #_____________________________________________________________
-@@ -32,7 +32,7 @@
- CSOURCES=tya.c tyarechelp.c tyarecode.c tyautil.c tyaruntime.c tyaexc.c
-
- #
--CFLAGS = -Wall -pipe -shared $(COPTFLAGS) $(POPTFLAGS) $(TARGETFLAGS)
-+CFLAGS += -Wall -shared $(COPTFLAGS) $(POPTFLAGS) $(TARGETFLAGS)
-
- all: $(TARGET)
-
diff --git a/java/tya/files/patch-ac b/java/tya/files/patch-ac
deleted file mode 100644
index 1b18456bd4b7..000000000000
--- a/java/tya/files/patch-ac
+++ /dev/null
@@ -1,14 +0,0 @@
---- README 2000/09/23 21:49:52 1.1
-+++ README 2000/09/23 21:52:34
-@@ -138,7 +138,10 @@
-
- You may either specify the compiler to the JVM on the command line, or
- you may set an environment variable that will let the JVM find the
--compiler.
-+compiler. In both cases you should set LD_LIBRARY_PATH enviropment
-+variable as follows:
-+
-+ export LD_LIBRARY_PATH=%%PREFIX%%/lib/tya
-
- For the command line option, run Java using option "-Djava.compiler=",
- like this example:
diff --git a/java/tya/files/patch-tya.c b/java/tya/files/patch-tya.c
deleted file mode 100644
index b35aaf482659..000000000000
--- a/java/tya/files/patch-tya.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- ./tya.c.orig Tue Jul 9 20:28:10 2002
-+++ ./tya.c Tue Oct 28 00:44:51 2003
-@@ -786,7 +786,7 @@
- unsigned long oldesp asm("anOldsp");
- unsigned long oldebp asm("anOldbp");
- unsigned long jumpTo asm("aJumpTo");
--#endif EXCEPTIONS_BY_SIGNALS
-+#endif /* EXCEPTIONS_BY_SIGNALS */
-
- #define NEWGETCONTEXT
- #define OFF116v5 4 // 0 for 114v4a
-@@ -916,16 +916,16 @@
-
- // restore old ebp and esp, push old eip on stack for exception handler
- // and jump there
-- asm volatile( "
-- movl $anOldbp, %eax
-- movl (%eax), %ebp
-- movl $anOldsp, %eax
-- movl (%eax), %esp
-- movl $anOldip, %eax
-- movl (%eax),%eax
-- pushl %eax
-- movl $aJumpTo, %eax
-- movl (%eax), %eax
-+ asm volatile( "\
-+ movl $anOldbp, %eax\
-+ movl (%eax), %ebp\
-+ movl $anOldsp, %eax\
-+ movl (%eax), %esp\
-+ movl $anOldip, %eax\
-+ movl (%eax),%eax\
-+ pushl %eax\
-+ movl $aJumpTo, %eax\
-+ movl (%eax), %eax\
- jmp *%eax" );
- #endif // EXCEPTIONS_BY_SIGNALS
- return HOOKRETVAL;
diff --git a/java/tya/files/patch-tyaruntime.c b/java/tya/files/patch-tyaruntime.c
deleted file mode 100644
index 1a8e4071de90..000000000000
--- a/java/tya/files/patch-tyaruntime.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- ./tyaruntime.c.orig Tue Oct 28 00:35:00 2003
-+++ ./tyaruntime.c Tue Oct 28 00:35:15 2003
-@@ -126,8 +126,8 @@
- {
- FASTINVPREPARE();
- }
--#endif USEASM
--#endif TRY_FAST_INVOKE
-+#endif /* USEASM */
-+#endif /* TRY_FAST_INVOKE */
-
-
- //---------------------------------------------------------------------------------