adapt hwpfilter unittests to separate RdbTarget makefile requirement
[LibreOffice.git] / beanshell / bsh-2.0b1-src.patch
bloba1358d3911683cf256f933d7df34578dea748e84
1 --- misc/BeanShell/build.xml Fri Dec 19 17:14:27 2003
2 +++ misc/build/BeanShell/build.xml Fri Mar 28 15:55:04 2008
3 @@ -17,7 +17,7 @@
4 up the build dir! It has to be done manually the first time (or put
5 in the jar file). There must be a way to fix this...
6 -->
7 -<project name="beanshell" default="compile" basedir=".">
8 +<project name="beanshell" default="jarall" basedir=".">
10 <!-- Project Configuration -->
12 @@ -71,6 +71,9 @@
13 value="bsh/util/BeanShellBSFEngine.java,TestBshBSF.java"/>
14 -->
16 + <property name="exclude-bsf"
17 + value="bsh/util/BeanShellBSFEngine.java,TestBshBSF.java"/>
19 <!-- Uncomment to build without the ASM class generator code.
20 <property name="exclude-classgen"
21 value="bsh/org/objectweb/asm/**,bsh/ClassGeneratorImpl.java,bsh/ClassGeneratorUtil.java,bsh/DelayedEvalBshMethod.java"/>
22 @@ -80,6 +83,9 @@
23 <property name="exclude-servlet"
24 value="bsh/servlet/*"/>
25 -->
27 + <property name="exclude-servlet"
28 + value="bsh/servlet/*"/>
30 <!-- Legacy excludes. Comment this *out* to build these legacy items -->
31 <property name="legacy-excludes"
32 --- misc/BeanShell/src/bsh/ClassGeneratorUtil.java Fri Dec 19 17:14:28 2003
33 +++ misc/build/BeanShell/src/bsh/ClassGeneratorUtil.java Fri Mar 28 15:55:05 2008
34 @@ -34,7 +34,9 @@
35 package bsh;
37 import bsh.org.objectweb.asm.*;
38 -import java.lang.reflect.*;
39 +import java.lang.reflect.Constructor;
40 +import java.lang.reflect.InvocationTargetException;
41 +import java.lang.reflect.Method;
42 import java.util.ArrayList;
43 import java.util.List;