I am trying to build OOo from the 1.9.m84 source drop on Linux/x86_64 and JRE 1.5.0.
The build is failing during the Ant invocation against bsh, because someone is using (too|two) aggressive wildcard imports in BeanShell/src/bsh/ClassGeneratorUtil.java. Please find below the patch that resolves this issue. I tried to find the right category in Issue Tracker but was not successful. I'm also not certain if the correct behavior is to patch the beanshell/download/*.gz file or append it to beanshell/bsh-2.0b1-src.patch. Thank you, -- /v\atthew ===== PATCH BEGINS HERE --- OOo_1.9.m84_src/beanshell/unxlngx4.pro/misc/build/BeanShell/src/bsh/ClassGeneratorUtil.java~ 2003-12-19 11:14:28.000000000 -0500 +++ OOo_1.9.m84_src/beanshell/unxlngx4.pro/misc/build/BeanShell/src/bsh/ClassGeneratorUtil.java 2005-03-16 12:22:29.000000000 -0500 @@ -34,7 +34,9 @@ package bsh; import bsh.org.objectweb.asm.*; -import java.lang.reflect.*; +import java.lang.reflect.Method; +import java.lang.reflect.Constructor; +import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.List; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
