pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/gcc3 Properly fixed the problem of an uninitializ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e8f8f45662e3
branches:  trunk
changeset: 534921:e8f8f45662e3
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sat Nov 03 17:16:37 2007 +0000

description:
Properly fixed the problem of an uninitialized variable, which has been
reported in PR 33240.

diffstat:

 lang/gcc3/distinfo         |   3 ++-
 lang/gcc3/patches/patch-as |  16 ++++++++++++++++
 2 files changed, 18 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r 533f66948bec -r e8f8f45662e3 lang/gcc3/distinfo
--- a/lang/gcc3/distinfo        Sat Nov 03 16:48:00 2007 +0000
+++ b/lang/gcc3/distinfo        Sat Nov 03 17:16:37 2007 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.23 2006/12/07 11:24:27 markd Exp $
+$NetBSD: distinfo,v 1.24 2007/11/03 17:16:37 rillig Exp $
 
 SHA1 (gcc-3.3.6.tar.bz2) = 2cc43978bb09af6c2ccfdf74797d10d7cc2596fb
 RMD160 (gcc-3.3.6.tar.bz2) = b32c7a08c690857f0ac52dda3deb47cf5775d967
@@ -20,3 +20,4 @@
 SHA1 (patch-ap) = d2f55ff6992f6afb106b3c861a8eee0a5b7bd70e
 SHA1 (patch-aq) = 1ee8d951e464a154c4f2a3f48d4c2101c2f3d79d
 SHA1 (patch-ar) = 1ed0338bde1e863ddcfbc0bdfb77aeafdbef7220
+SHA1 (patch-as) = 35e1649aed1744be5cdd7caa0b246e74dd9df0aa
diff -r 533f66948bec -r e8f8f45662e3 lang/gcc3/patches/patch-as
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/gcc3/patches/patch-as        Sat Nov 03 17:16:37 2007 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-as,v 1.1 2007/11/03 17:16:37 rillig Exp $
+
+At the point of this code, AC_CHECK_HEADERS(locale.h) has not yet been
+called, so assume that the header exists.
+
+--- libjava/configure.orig     2005-05-03 14:37:08.000000000 +0200
++++ libjava/configure  2007-11-03 18:03:59.000000000 +0100
+@@ -4191,7 +4191,7 @@ EOF
+   fi
+   
+ 
+-   if test $ac_cv_header_locale_h = yes; then
++   if test "${ac_cv_header_locale_h-yes}" != no; then
+     echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
+ echo "configure:4197: checking for LC_MESSAGES" >&5
+ if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then



Home | Main Index | Thread Index | Old Index