diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-05 12:37:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-05 12:37:31 +0000 |
commit | 7ca76f4d86d067875610ff43bedf67a335d018b6 (patch) | |
tree | 1d685f795339918d93172db12c0ca5611714678d /sys-devel/gettext/files | |
parent | made 3.4.2-r2 rdep on gcc-config-1.3.6-r3 to fix the new specs-specific confi... (diff) | |
download | historical-7ca76f4d86d067875610ff43bedf67a335d018b6.tar.gz historical-7ca76f4d86d067875610ff43bedf67a335d018b6.tar.bz2 historical-7ca76f4d86d067875610ff43bedf67a335d018b6.zip |
Version bump #47788 and security #66355.
Diffstat (limited to 'sys-devel/gettext/files')
-rw-r--r-- | sys-devel/gettext/files/digest-gettext-0.14.1 | 2 | ||||
-rw-r--r-- | sys-devel/gettext/files/gettext-0.14.1-without_java.patch | 104 |
2 files changed, 106 insertions, 0 deletions
diff --git a/sys-devel/gettext/files/digest-gettext-0.14.1 b/sys-devel/gettext/files/digest-gettext-0.14.1 new file mode 100644 index 000000000000..c7cf30aa1ae7 --- /dev/null +++ b/sys-devel/gettext/files/digest-gettext-0.14.1 @@ -0,0 +1,2 @@ +MD5 78f4b862510beb2e5d43223dd610e77d gettext-0.14.1.tar.gz 6550874 +MD5 db2ad0d52c8cbc32a91b183a23f971e2 gettext-0.14.1-bootstrap.patch.bz2 3133 diff --git a/sys-devel/gettext/files/gettext-0.14.1-without_java.patch b/sys-devel/gettext/files/gettext-0.14.1-without_java.patch new file mode 100644 index 000000000000..d60dde9dcbc6 --- /dev/null +++ b/sys-devel/gettext/files/gettext-0.14.1-without_java.patch @@ -0,0 +1,104 @@ +Submitted By: Tushar Teredesai <tushar@linuxfromscratch.org> +Date: 2003-11-15 +Initial Package Version: 0.12.1 +Origin: None +Description: Adds logic to bypass checking for java/gcj. This is useful +when building gettext in Ch 5 (If java is found on the host, gettext build +libs that link to the host and also causes failure of some tests during make check). +To bypass Java checks, pass the option --without-java to configure. +diff -ur gettext-0.12.1.orig/gettext-runtime/configure gettext-0.12.1/gettext-runtime/configure +--- gettext-0.12.1.orig/gettext-runtime/configure 2003-05-22 08:38:47.000000000 -0500 ++++ gettext-0.12.1/gettext-runtime/configure 2003-10-15 18:20:49.000000000 -0600 +@@ -3268,6 +3268,16 @@ + + + ++if test "${with_java+set}" = set; then ++ withval="$with_java" ++ test "$withval" = no || with_java=yes ++else ++ with_java=yes ++fi; ++if test "$with_java" = no ; then ++ echo "Skipping Java compiler checks..." ++else ++ + echo "$as_me:$LINENO: checking for Java compiler" >&5 + echo $ECHO_N "checking for Java compiler... $ECHO_C" >&6 + cat >conftest.$ac_ext <<_ACEOF +@@ -3490,6 +3500,7 @@ + echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6 + fi ++fi + + if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then + BUILDJAVA=yes +diff -ur gettext-0.12.1.orig/gettext-tools/configure gettext-0.12.1/gettext-tools/configure +--- gettext-0.12.1.orig/gettext-tools/configure 2003-05-22 08:40:24.000000000 -0500 ++++ gettext-0.12.1/gettext-tools/configure 2003-10-15 18:21:15.000000000 -0600 +@@ -3070,6 +3070,16 @@ + + + ++if test "${with_java+set}" = set; then ++ withval="$with_java" ++ test "$withval" = no || with_java=yes ++else ++ with_java=yes ++fi; ++if test "$with_java" = no ; then ++ echo "Skipping Java native compiler checks..." ++else ++ + echo "$as_me:$LINENO: checking for Java to native code compiler" >&5 + echo $ECHO_N "checking for Java to native code compiler... $ECHO_C" >&6 + # Search for the gcj command or use the one provided by the user. +@@ -3161,6 +3171,7 @@ + HAVE_GCJ= + fi + ++fi + + + +@@ -3423,6 +3434,10 @@ + + + ++if test "$with_java" = no ; then ++ echo "Skipping Java compiler checks..." ++else ++ + echo "$as_me:$LINENO: checking for Java compiler" >&5 + echo $ECHO_N "checking for Java compiler... $ECHO_C" >&6 + cat >conftest.$ac_ext <<_ACEOF +@@ -3646,6 +3661,8 @@ + echo "${ECHO_T}no" >&6 + fi + ++fi ++ + if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then + BUILDJAVA=yes + else +@@ -3653,6 +3670,10 @@ + fi + + ++if test "$with_java" = no ; then ++ echo "Skipping Java VM checks..." ++else ++ + + echo "$as_me:$LINENO: checking for Java virtual machine" >&5 + echo $ECHO_N "checking for Java virtual machine... $ECHO_C" >&6 +@@ -3840,7 +3861,7 @@ + echo "${ECHO_T}$ac_result" >&6 + + +- ++fi + + + |