summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-12-10 00:51:01 -0800
committerKeith Packard <keithp@keithp.com>2013-12-10 00:51:01 -0800
commit8959c059ec67f5334e31abbe3f831dd571a0b464 (patch)
tree49226a397cd679cc84f42daf035d5c03c33838d8
parenta4596c134aa5e7867f1ca1d86d36afb2af9b8999 (diff)
java: Add -target 1.6 to all java compiles
This makes sure the results can run with the old JVM Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altoslib/Makefile.am2
-rw-r--r--altosui/Makefile.am2
-rw-r--r--altosuilib/Makefile.am2
3 files changed, 3 insertions, 3 deletions
diff --git a/altoslib/Makefile.am b/altoslib/Makefile.am
index 2c26220b..6d396635 100644
--- a/altoslib/Makefile.am
+++ b/altoslib/Makefile.am
@@ -1,4 +1,4 @@
-AM_JAVACFLAGS=-encoding UTF-8 -Xlint:deprecation -source 6
+AM_JAVACFLAGS=-target 1.6 -encoding UTF-8 -Xlint:deprecation -source 6
JAVAROOT=bin
diff --git a/altosui/Makefile.am b/altosui/Makefile.am
index a2138d0d..f11c3bfa 100644
--- a/altosui/Makefile.am
+++ b/altosui/Makefile.am
@@ -1,6 +1,6 @@
JAVAROOT=classes
-AM_JAVACFLAGS=-encoding UTF-8 -Xlint:deprecation -source 6
+AM_JAVACFLAGS=-target 1.6 -encoding UTF-8 -Xlint:deprecation -source 6
man_MANS=altosui.1
diff --git a/altosuilib/Makefile.am b/altosuilib/Makefile.am
index 5e19e00f..4b22af1f 100644
--- a/altosuilib/Makefile.am
+++ b/altosuilib/Makefile.am
@@ -1,4 +1,4 @@
-AM_JAVACFLAGS=-encoding UTF-8 -Xlint:deprecation -source 6
+AM_JAVACFLAGS=-target 1.6 -encoding UTF-8 -Xlint:deprecation -source 6
JAVAROOT=bin