The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/jakarta-commons-httpclient#fdacc772470ef0821cf10c83ddd654263e7967c5
49 lines
1.6 KiB
Diff
49 lines
1.6 KiB
Diff
From 00274a68493341c991fa1dfe13b67d4ff7c4e432 Mon Sep 17 00:00:00 2001
|
|
From: Fabio Valentini <decathorpe@gmail.com>
|
|
Date: Sat, 18 Jul 2020 19:47:03 +0200
|
|
Subject: [PATCH 2/6] encoding
|
|
|
|
---
|
|
build.xml | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/build.xml b/build.xml
|
|
index 7c339bd..b65b5c8 100644
|
|
--- a/build.xml
|
|
+++ b/build.xml
|
|
@@ -179,6 +179,7 @@
|
|
description="Compile shareable components">
|
|
<javac srcdir ="${source.home}/java"
|
|
destdir ="${build.home}/classes"
|
|
+ encoding ="ISO-8859-1"
|
|
debug ="${compile.debug}"
|
|
deprecation ="${compile.deprecation}"
|
|
optimize ="${compile.optimize}">
|
|
@@ -186,6 +187,7 @@
|
|
</javac>
|
|
<javac srcdir ="${source.home}/examples"
|
|
destdir ="${build.home}/examples"
|
|
+ encoding ="ISO-8859-1"
|
|
debug ="${compile.debug}"
|
|
deprecation ="${compile.deprecation}"
|
|
optimize ="${compile.optimize}">
|
|
@@ -197,6 +199,7 @@
|
|
description="Compile unit test cases">
|
|
<javac srcdir ="${test.home}"
|
|
destdir ="${build.home}/tests"
|
|
+ encoding ="ISO-8859-1"
|
|
debug ="${compile.debug}"
|
|
deprecation ="${compile.deprecation}"
|
|
optimize ="${compile.optimize}">
|
|
@@ -241,6 +244,7 @@
|
|
<mkdir dir="${dist.home}/docs/api"/>
|
|
<javadoc sourcepath ="${source.home}/java"
|
|
destdir ="${dist.home}/docs/api"
|
|
+ encoding ="ISO-8859-1"
|
|
packagenames ="org.apache.commons.*"
|
|
author ="true"
|
|
protected ="true"
|
|
--
|
|
2.26.2
|
|
|