From: Keith Packard Date: Tue, 10 Dec 2013 08:51:01 +0000 (-0800) Subject: java: Add -target 1.6 to all java compiles X-Git-Tag: 1.3~44 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=8959c059ec67f5334e31abbe3f831dd571a0b464;ds=sidebyside 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 --- 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