diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-09-11 15:37:23 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-09-11 15:37:23 +0800 |
commit | 2ea6790f0c258f38a56313468a8bf1cd813ca9c6 (patch) | |
tree | 6c165ffde76430372d96b7ba6716af3cb2d30a1c /java/tya/files | |
parent | fa4c645293bad1511ae9b704179a8e3642f179da (diff) | |
download | freebsd-ports-graphics-2ea6790f0c258f38a56313468a8bf1cd813ca9c6.tar.gz freebsd-ports-graphics-2ea6790f0c258f38a56313468a8bf1cd813ca9c6.tar.zst freebsd-ports-graphics-2ea6790f0c258f38a56313468a8bf1cd813ca9c6.zip |
Several enhancements/cleanups:
- HAS_CONFIGURE -> GNU_CONFIGURE;
- Don't bind to any particular virtual machine - install jit into
${LOCALBASE}/lib/tya;
- Respect CFLAGS.
Diffstat (limited to 'java/tya/files')
-rw-r--r-- | java/tya/files/patch-ab | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/java/tya/files/patch-ab b/java/tya/files/patch-ab new file mode 100644 index 00000000000..8bfb5da2f69 --- /dev/null +++ b/java/tya/files/patch-ab @@ -0,0 +1,26 @@ +--- 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) + |