summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/gettext/gettext-0.14.1/disable_java.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/gettext/gettext-0.14.1/disable_java.patch')
-rw-r--r--meta/recipes-core/gettext/gettext-0.14.1/disable_java.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-core/gettext/gettext-0.14.1/disable_java.patch b/meta/recipes-core/gettext/gettext-0.14.1/disable_java.patch
new file mode 100644
index 0000000000..f1ae816f37
--- /dev/null
+++ b/meta/recipes-core/gettext/gettext-0.14.1/disable_java.patch
@@ -0,0 +1,37 @@
1# Pulled from OpenEmbedded
2#
3# Commented by: Saul Wold <saul.wold@intel.com>
4
5Index: gettext-0.14.1/gettext-tools/configure.ac
6===================================================================
7--- gettext-0.14.1.orig/gettext-tools/configure.ac 2004-01-16 10:49:06.000000000 +0000
8+++ gettext-0.14.1/gettext-tools/configure.ac 2007-11-14 21:43:39.000000000 +0000
9@@ -37,28 +37,16 @@
10 AC_PROG_YACC
11
12 gt_GCJ
13-if test -n "$HAVE_GCJ"; then
14- BUILDJAVAEXE=yes
15-else
16 BUILDJAVAEXE=no
17-fi
18 AC_SUBST(BUILDJAVAEXE)
19
20 gt_JAVACOMP
21 AC_CHECK_PROG(JAR, jar, jar)
22-if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then
23- BUILDJAVA=yes
24-else
25 BUILDJAVA=no
26-fi
27 AC_SUBST(BUILDJAVA)
28
29 gt_JAVAEXEC
30-if test -n "$HAVE_JAVAEXEC" && test $BUILDJAVA = yes; then
31- TESTJAVA=yes
32-else
33 TESTJAVA=no
34-fi
35 AC_SUBST(TESTJAVA)
36
37 gt_CSHARPCOMP