Update commons-codec to version 1.6. Update commons-lang to version 2.4. Patch common-httpclient to avoid building issues with OpenJDK-7. These versions maintain ABI compatibility while using features from newer Java versions and have been tested on the FreeBSD port. Change-Id: I6aec2b6d22fc3335ffbdda9558f475313ef53c85
21 lines
1.2 KiB
Diff
21 lines
1.2 KiB
Diff
--- misc/build/commons-codec-1.6-src/build.xml-old 2012-05-05 22:12:32.000000000 -0500
|
|
+++ misc/build/commons-codec-1.6-src/build.xml 2012-05-05 22:16:00.000000000 -0500
|
|
@@ -96,7 +96,6 @@
|
|
</target>
|
|
<target name="dist" depends="compile, javadoc" description="Create binary distribution">
|
|
<mkdir dir="${dist.home}"/>
|
|
- <copy file="${basedir}/LICENSE.txt" todir="${dist.home}"/>
|
|
<copy file="${basedir}/NOTICE.txt" todir="${dist.home}"/>
|
|
<copy file="${basedir}/RELEASE-NOTES.txt" todir="${dist.home}"/>
|
|
<antcall target="jar"/>
|
|
@@ -104,8 +103,7 @@
|
|
<target name="jar" depends="compile" description="Create jar">
|
|
<mkdir dir="${dist.home}"/>
|
|
<mkdir dir="${build.home}/classes/META-INF"/>
|
|
- <copy file="${basedir}/LICENSE.txt" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
|
|
- <copy file="${basedir}/LICENSE.txt" tofile="${build.home}/classes/META-INF/NOTICE.txt"/>
|
|
+ <copy file="${basedir}/NOTICE.txt" tofile="${build.home}/classes/META-INF/NOTICE.txt"/>
|
|
<jar jarfile="${dist.home}/${final.name}.jar" basedir="${build.home}/classes">
|
|
<manifest>
|
|
<attribute name="Specification-Title" value="Commons Codec"/>
|