diff options
author | Raif S. Naffah <raif@swiftdsl.com.au> | 2006-07-28 20:09:52 +0000 |
---|---|---|
committer | Raif S. Naffah <raif@swiftdsl.com.au> | 2006-07-28 20:09:52 +0000 |
commit | ae12970a5f749e8899701ae36d88a506a9984788 (patch) | |
tree | 1b7c613bae8d563e3d73272df4882a3c5c6f10fa | |
parent | 5b417269a7609df446ebaed73568059e9d757be2 (diff) | |
download | classpath-ae12970a5f749e8899701ae36d88a506a9984788.tar.gz |
2006-07-29 Raif S. Naffah <raif@swiftdsl.com.au>
* tools/Makefile.am: Added source 1.4 compliance option when ECJ is used.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | tools/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2006-07-29 Raif S. Naffah <raif@swiftdsl.com.au> + * tools/Makefile.am: Added source 1.4 compliance option when ECJ is used. + +2006-07-29 Raif S. Naffah <raif@swiftdsl.com.au> + * tools/gnu/classpath/tools/keytool/Command.java: Removed unused import. (getCallbackHandler): Fully qualify linked class in javadoc. * tools/gnu/classpath/tools/keytool/GenKeyCmd.java (cmdOptionsParser): Removed. diff --git a/tools/Makefile.am b/tools/Makefile.am index e4e9200d2..2f417e69a 100755 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -13,7 +13,7 @@ if FOUND_GCJX JCOMPILER = $(GCJX) -encoding UTF-8 -bootclasspath '' -sourcepath '' -classpath $(GLIBJ_CLASSPATH):. else if FOUND_ECJ -JCOMPILER = $(ECJ) -encoding UTF-8 -bootclasspath $(GLIBJ_CLASSPATH) -classpath . +JCOMPILER = $(ECJ) -source 1.4 -encoding UTF-8 -bootclasspath $(GLIBJ_CLASSPATH) -classpath . else error dunno how to setup the JCOMPILER and compile endif |