File change_spec of Package gcc41

#
# spec file for package  (Version )
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


rm -f gcc*.spec cross*.spec cross*.changes libgcj*.spec
if [ -f gcc-mainline.changes ] ; then
  mv gcc-mainline.changes gcc.changes
fi
# Default is to generate the normal gcc package
# unless a parameter is given.  In case that it is '-*',
# that parameter will be used as suffix for the package name
# and as suffix for the install path (/opt/gccSUFFIX)
# In case that it is '[0-9]*', that parameter will be used
# as a suffix for a versioned package name.
if [ $# -lt 1 ]; then
	GCC_FOR_OPT=no
	outfile=gcc.spec
else
	case $1 in
	-*)
	  GCC_FOR_OPT=yes
	  suffix=$1
	  outfile=gcc$1.spec
	;;
	[0-9]*)
	  GCC_FOR_OPT=no
	  base_ver=$1
	  outfile=gcc$1.spec
	;;
	*)
	  exit 1
	;;
	esac
fi
if [ $GCC_FOR_OPT = yes ]; then
	sed -e 's%@gcc_suffix@%'"$suffix"'%g' \
	    -e 's$@PREFIX_FOR_OPT@$%define _prefix /opt/gcc'"$suffix"'$g' \
	    -e 's$@LIBDIR_FOR_OPT@$%define _libdir %{_prefix}/%{_lib}$g' \
	    -e 's%@GCC_FOR_OPT@%1%g' \
	    -e 's%^PreReq:.*%%g' \
	    -e 's%@variant@%%g' \
	    -e 's%@base_ver@%%g' \
	    gcc.spec.in > $outfile
	test -f gcc.changes && mv gcc.changes gcc$suffix.changes
        rm -f cross*gcc-icecream-backend.spec cross*gcc-icecream-backend.changes cross-avr-gcc.changes cross-avr-gcc.spec
else
	sed -e 's%@gcc_suffix@%%g' \
	    -e 's%@base_ver@%'$base_ver'%g' \
	    -e 's$@PREFIX_FOR_OPT@$$g' \
	    -e 's$@LIBDIR_FOR_OPT@$$g' \
	    -e 's%@GCC_FOR_OPT@%0%g' \
	    gcc.spec.in \
	| sed -n -e '{
/^# PACKAGE-BEGIN/h
/^# PACKAGE-BEGIN/,/^# PACKAGE-END/H
/^# PACKAGE-BEGIN/,/^# PACKAGE-END/!p
/^# PACKAGE-END/{g
s/@variant@//g
p
g
s/@variant@/-32bit/g
p
g
s/@variant@/-64bit/g
p
}
}' > $outfile
	echo '%define building_libjava 1' > libgcj$base_ver.spec
	echo '%define run_tests 1' >> libgcj$base_ver.spec
	sed -e '/^# LIBJAVA-DELETE-BEGIN/,/^# LIBJAVA-DELETE-END/d;s/-n libgcj@base_ver@@gcc_suffix@$//g;s/^Name:[[:space:]]*gcc/Name: libgcj/g' \
	    gcc.spec.in \
	| sed -e 's%@gcc_suffix@%%g' \
	    -e 's%@base_ver@%'$base_ver'%g' \
	    -e 's$@PREFIX_FOR_OPT@$$g' \
	    -e 's$@LIBDIR_FOR_OPT@$$g' \
	    -e 's%@GCC_FOR_OPT@%0%g' \
	| sed -n -e '{
/^# PACKAGE-BEGIN/h
/^# PACKAGE-BEGIN/,/^# PACKAGE-END/H
/^# PACKAGE-BEGIN/,/^# PACKAGE-END/!p
/^# PACKAGE-END/{g
s/@variant@//g
p
g
s/@variant@/-32bit/g
p
g
s/@variant@/-64bit/g
p
}
}' >> libgcj$base_ver.spec
fi
  ## non-icecream cross compilers.
  export outfile
  for arch in avr; do
    cross_arch=$arch sh micro-cross.spec.in > cross-$arch-gcc.spec
    test -f gcc*.changes && ln -f gcc*.changes cross-$arch-gcc.changes
  done
if [ $GCC_FOR_OPT != yes ]; then
  test -f gcc$base_ver.changes && ln -f gcc$base_ver.changes libgcj$base_ver.changes
fi
exit 0

%changelog
* Fri Nov 21 2008 ro@suse.de
- update check-build.sh
* Thu Jun 12 2008 rguenther@suse.de
- Update to gcc-4_1-branch head (r136697).
* Thu Apr 10 2008 ro@suse.de
- added baselibs.conf file to build xxbit packages
  for multilib support
* Fri Feb 15 2008 dmueller@suse.de
- fix rpmlintrc (it has to be valid python code)
* Fri Feb 15 2008 rguenther@suse.de
- Add rpmlintrc for gcc41.
* Tue Oct 30 2007 rguenther@suse.de
- Update to gcc-4_1-branch head (r129775).
* Mon Oct 01 2007 rguenther@suse.de
- Add patch to add -fpreserve-function-arguments.  [#326866]
* Fri Aug 10 2007 matz@suse.de
- Remove include/sound directory, as it now also contains fixed
  includes.
* Tue Jul 31 2007 matz@suse.de
- Don't build the cross icecream backends for 4.1. [#295509]
* Tue Jul 24 2007 rguenther@suse.de
- Update to gcc-4_1-branch head (r126874).
* Tue Jun 12 2007 rguenther@suse.de
- Add perl BuildRequires.
- Fix dependencies in libgcj libtool files.
* Fri May 25 2007 rguenther@suse.de
- Collect translations with %%find_lang.
* Wed May 23 2007 rguenther@suse.de
- Make testresults non-executable.
* Mon May 21 2007 rguenther@suse.de
- Update to SVN branch head (r124895).
- Use profiledbootstrap where appropriate.
* Mon Apr 30 2007 rguenther@suse.de
- Update to SVN branch head (r124295).
- Do not package libstdc++ precompiled headers.
- Add unzip BuildRequires for building libjava.
* Fri Apr 13 2007 rguenther@suse.de
- Update to SVN branch head (r123784).
- Add patch to reorder early uninitialized warning pass.
- Add %%post/%%postun %%run_ldconfig to library packages.
* Thu Mar 29 2007 rguenther@suse.de
- Adjust BuildRequires for cross packages.
* Mon Mar 26 2007 rguenther@suse.de
- Add zlib-devel BuildRequires.
* Fri Mar 02 2007 rguenther@suse.de
- Update to SVN branch head (r122476).
- Add patch for PR29512.
* Tue Feb 20 2007 rguenther@suse.de
- Update to SVN branch head (r122090).
- Add patch for PR29558.
- Remove bogus binutils version check from micro-cross.spec.in.
- Add patch to fix libstdc++-v3 binutils version check.
* Mon Feb 19 2007 schwab@suse.de
- Remove stack notes hack.
* Tue Feb 06 2007 rguenther@suse.de
- Add patch for PR20218, visibility fixes.
- Add patch for wrong parentheses warnings.
- Filter -ffortify and -fstack-protector from RPM_OPT_FLAGS.
* Tue Feb 06 2007 jw@suse.de
- typo in binutils check fixed.
* Mon Jan 29 2007 jw@suse.de
- cross-avr now checks the binutils changelog rather than an
  exact version match.
* Mon Jan 22 2007 rguenther@suse.de
- Fix building ada with gcc42 in beta.
- Include ada in testing.
- Do not package libffi.la.
- Add patches for AMD Family 10 and Power6 support.
* Mon Jan 15 2007 rguenther@suse.de
- Update to SVN branch head (r120791).
* Mon Jan 08 2007 schwab@suse.de
- Add fix for PR30230.
* Fri Dec 22 2006 jw@suse.de
- added versioned dependency for cross-avr-binutils to
  micro-cross.spec.in [230535]
* Sun Dec 10 2006 schwab@suse.de
- Fix prologue generation when many registers need to be spilled
  [#224153].
* Wed Nov 29 2006 rguenther@suse.de
- Update to SVN branch head.
- Add patch for Fate #300738.  [#159446]
- Add patch for PR29166.  [#224153]
* Fri Nov 17 2006 rguenther@suse.de
- Fix gcc41-fortran-{32,64}bit and gcc41-objc-{32,64}bit dependencies.
* Wed Nov 15 2006 jw@suse.de
- Added cross-avr patches found on freebsd.org [#220253]
* Wed Nov 15 2006 rguenther@suse.de
- Update to SVN branch head, fixes PR21032.
- Add patches for PR28217, PR28888, PR29753 and PR29788.
- Make gcc41-java and libgcj41-devel cross-dependencies independent
  of release numbers.  [#214268]
- Remove left-over dependency from libstdc++41-devel on gcc41.
* Mon Nov 13 2006 rguenther@suse.de
- Add patch for PR29797, fixes OpenOffice miscompilation on
  ppc.  [#198243]
* Thu Nov 09 2006 rguenther@suse.de
- Update to SVN branch head, fixes PR29695.
* Wed Nov 01 2006 rguenther@suse.de
- Update to SVN branch head, fixes PR29631 and PR28970.
- Add patch for PR28545.
* Tue Oct 24 2006 rguenther@suse.de
- Update to SVN branch head, fixes libzypp build on s390x.
- Re-enable MNI instruction support.
- Add patch to revert the fix for PR28506, fixes mjpegtools build.
* Wed Oct 18 2006 rguenther@suse.de
- Update to SVN branch head, fixes PR29119, PR29091 and PR28960.
* Fri Oct 13 2006 rguenther@suse.de
- Update to SVN branch head, fixes PR29154.
- Disable MNI instruction support again.
* Mon Oct 02 2006 matz@suse.de
- Fix PR29319 conservatively.  [s390x ICE]
* Wed Sep 27 2006 schwab@suse.de
- Fix static linking.
* Mon Sep 25 2006 rguenther@suse.de
- Merge fixes for #189571 and #199137 from SLE10-SP1 branch.
- Add patch to handle dwarf3 codes to support new glibc unwinding.
- Add patch for PR26208, unwinding from signal context.
- Add patch to support FORTIFY_SOURCE for strncat.
- Add patches for PR26881 and PR28755.  [#201515]
- Add patch to add MNI instruction support.
* Tue Sep 19 2006 rguenther@suse.de
- Update to SVN branch head.
- New gcc41-gij package.
- Do not package addr2name.
- Package jv-convert-4.1 manpage.
- Add patch to avoid -mtune=generic regression.
* Wed Sep 13 2006 rguenther@suse.de
- Update to SVN branch head.
- Enable gfortran testing.
* Tue Aug 29 2006 rguenther@suse.de
- Update to SVN branch head.  Fixes [#187184].
- Remove patch for bogus warning which is fixed upstream already.
- Fix URL for bugreporting, use http://bugs.opensuse.org instead of
  http://www.suse.de/feedback.
- No longer package gccbug script which led to feedback@suse.de which no
  longer exists.
- Run the testsuite from the libgcj package and package results
  in gcc41-testresults.
* Mon Aug 21 2006 rguenther@suse.de
- Update to SVN branch head.
- Add patch to allow stack protector inside the kernel.
- Generate libgcj spec file from gcc spec file.
- Clean up configure target machinery.
* Tue Aug 15 2006 rguenther@suse.de
- Clean up target architecture discovery.
- Add separate spec file for building libgcj.
* Tue Aug 15 2006 rguenther@suse.de
- Split libmudflap package from gcc-mudflap.
- Integrate gcc-mudflap into gcc package.
- Split 32bit/64bit package from gcc package.
- Allow disabling of libjava build.
* Thu Aug 03 2006 schwab@suse.de
- Fix missing stack notes.
* Mon Jul 31 2006 rguenther@suse.de
- Update to SVN branch head.
- Bump hppa libgcc so version to 4.
- Include conditionals for openSUSE::Base.
- Clean up remaining things in the file lists.
* Thu Jul 20 2006 rguenther@suse.de
- Rename all packages.  Use provides to handle update and
  same major .so version libraries from different packages.
* Mon Jul 17 2006 rguenther@suse.de
- Rename to gcc41.
- Install with suffix -4.1 for all binaries.
- No longer package protoize.
- No longer package cc, c++ and /lib/cpp.
- Make (some) devel packages use the package suffix.
- No longer provide c_compiler and c++_compiler.
* Fri Jul 14 2006 rguenther@suse.de
- Move all info files to gcc-info package.
* Wed Jul 12 2006 rguenther@suse.de
- Move development libraries to version specific directories.
- Move libstdc++ locales to gcc-locale package.
- Move libstdc++ documentation to new libstdc++-doc package.
- Remove libstdc++, fortran and objc .la files.
- Adjust dependencies to shared libraries.
* Mon Jul 10 2006 rguenther@suse.de
- No longer revert fix for PR26068.
- Add patch to fix PR28016.
* Wed Jul 05 2006 rguenther@suse.de
- Update to 4.1 SVN head.
* Thu Jun 22 2006 rguenther@suse.de
- Disable hack that made -mno-tls-direct-seg-refs the default
  on x86_64.  [#185782]
- The great spec file rewrite.  Split everything into 32/64bit
  subpackages.
* Tue Jun 06 2006 rguenther@suse.de
- Revert fix for PR26068.
- Annotate icecream crosses as having binary payload.
- Package libffi.
* Tue May 30 2006 rguenther@suse.de
- Update to gcc-4_1-branch head.  Fixes #22743.
- Strip binaries and libs for the icecream backends.
- Split libgfortran shared library into own package.
- Build and package the Objective C++ frontend.
- No longer package fastjar stuff.
- Instead of reverting the fix for PR26757 apply the fix for PR27793.
  [#179518]
* Mon May 29 2006 rguenther@suse.de
- Revert patch for PR26757 which causes MPlayer build failures.
* Thu May 25 2006 rguenther@suse.de
- Update to 4.1.1 release.
* Wed May 17 2006 rguenther@suse.de
- Update to gcc-4_1-branch head.
* Mon May 15 2006 rguenther@suse.de
- Update to gcc-4_1-branch head.
- Depend on mpfr-devel.
* Sat May 06 2006 rguenther@suse.de
- Update to gcc-4_1-branch head and remove rpm patches that are
  now obsoleted.  [#173029 (and more)]
* Wed May 03 2006 matz@suse.de
- Add patch for PR27409, an ICE.  [#170939]
* Wed May 03 2006 rguenther@suse.de
- Add patch for PR27364, VRP miscompiles multiplication with overflow,
  miscompilation of binutils.
- Add patch for PR14261 for ia64, s390 and s390x, ICE for code resembling to
  yacc output.  [#171728]
* Fri Apr 28 2006 rguenther@suse.de
- Add patch for PR26399, -fprofile-generate/use checksum
  mismatches.  [#159466]
* Sat Apr 22 2006 rguenther@suse.de
- Add patch to fix fallout from patch for PR27095, fix PR27260.
* Thu Apr 20 2006 rguenther@suse.de
- Add patch to fix ppc long-double varargs ABI issue.  [#167932]
* Wed Apr 19 2006 rguenther@suse.de
- Add patch to reorder indexed load/store operands on rs6000.  [#161673]
* Tue Apr 18 2006 rguenther@suse.de
- Add patch for PR25917, wrong assembly generated on ia64
  for certain bitops and extensions.
- Add patch for PR26777, std::pubseekoff throwing away buffered
  data on error.
- Add patch for PR26996, SCEV analysis ICEing on vector types.
- Add patch for PR27006, wrong assembly genrated on ppc/ppc64
  for altivec constant loading.
- Add patch for PR27095, memset and strcmp evaluating length argument
  twice.
- Add patch for PR27134, ICEing on (int)floor() and other rounding
  functions with -ffast-math.
- Add patch for PR27162, using == instead of the binary predicate
  specified for std::search_n.
* Sat Apr 08 2006 rguenther@suse.de
- Update patch for PR26919 to also collect garbage.
* Fri Apr 07 2006 rguenther@suse.de
- Add patch for PR26919.
- Merge up to rev 112748 for gfortran changes on the branch.
  [#162890, #163146]
* Mon Apr 03 2006 rguenther@suse.de
- Add patch for PR26763.
* Thu Mar 30 2006 rguenther@suse.de
- Fix #153386 in a different way.
- Add patch for PR26042.  [#148884]
* Mon Mar 27 2006 rguenther@suse.de
- Really fix #153386.
* Thu Mar 23 2006 rguenther@suse.de
- Update patch for PR26565.
- Add patch for PR25737.
- Add patch for OpenOffice problems.  [#153386]
- Add patch for PR26826.  [#160095]
- Enable Cairo support in libjava.
* Wed Mar 15 2006 rguenther@suse.de
- Add patch to update to r112077.
  [#19543, #26489, #26557, #26672, #18859, #26004, #26524, #26587,
  [#26345], #26453, #26291, #25885, #26054, #26041, #26064, #26107,
  [#26393], #20938, #24519, #25395, #25054, #25089, #24557, #23092,
  [#25045], #25075, #21303, #26499, #26554, #21303, #24903, #26136,
  [#26464], #26423, #26532, #26132, #26526, #25713, #24461, #26103]
- Patches for PR26587, PR26526 no longer necessary.
- Update patch for PR26565.
- Add patch for PR26643.
- Move libgcjawt.(so|la) and lib-gnu-java-awt-peer-gtk.(so|la) to the
  gcc-java package because these are dlopened by the runtime. [#157655]
* Tue Mar 07 2006 rguenther@suse.de
- Add patch for PR26587, miscompilation due to wrong PTA info.
- Add patch for PR26565, unaligned accesses on strict alignment targets.
- Add patch for PR26526, missing 64bit export for __copy_streambufs.
* Tue Feb 28 2006 rguenther@suse.de
- Update to 4.1.0 release.
- Patch for PR25603 no longer necessary.
- Add patch for PR24879.
- Add fortran WHERE optimizations.
* Thu Feb 23 2006 rguenther@suse.de
- Update to SVN head.
- Patch for PR26350 no longer necessary.
- Add patch for PR25603.  [#152811]
- Add patch for NVL152859.  [#152859]
* Sat Feb 18 2006 rguenther@suse.de
- Update to SVN head.  [#26334]
- Patch for PR26209 no longer necessary.
- Add patch for PR26350.
* Tue Feb 14 2006 rguenther@suse.de
- Update to SVN head.  [#150421]
- Add patches for latent VRP and fold bugs.
- Enable long-double-128 by default on s390, s390x, ppc and ppc64.
- Add patch for PR26209.
* Sun Feb 12 2006 matz@suse.de
- Don't add /lib/*/libc.so to the cross backends.
* Fri Feb 10 2006 rguenther@suse.de
- Update to SVN head.  [#25251][#26180]
* Wed Feb 08 2006 matz@suse.de
- Make the cross-ppc-icecream-backend accept -m64.
* Tue Feb 07 2006 rguenther@suse.de
- Update to SVN head.
- S390 long double patch now upstream.
- Drop in long double patchset from FC.
- Disable all Ada workarounds.
* Wed Feb 01 2006 rguenther@suse.de
- Update to SVN head.
- Re-diff ada patch for ppc.
- Add another minor libstdc++ improvement from Paolo.
- Re-enable --with-tune=z9-109 --with-arch=z900 change on s390(x).
- Update long double patch for s390.
* Mon Jan 30 2006 rguenther@suse.de
- Update to SVN head.
- Add ppc32, s390(x) 128bit long-double support.
- Add missing intrinsics to emm headers.
- Add candidate patch for ada build problem on s390x.
- Revert --with-tune=z9-109 --with-arch=z900 change on s390(x).
- Patch for PR25324 no longer necessary.
* Fri Jan 27 2006 rguenther@suse.de
- Update to SVN head as of Mon Jan 23.
- Add patches for PR22275, PR25626 and PR25324.
- Patches for PR23948 and PR25535 no longer necessary.
- Exchange patches that fix atomic builtins for a better one.
- Add patch to fix unexpected EOF in fix-header.
- Update patch(es) for generic CPU model.
- Add gfortran matmul patch.
- Use --with-tune=z9-109 --with-arch=z900 for s390(x).
- Disable ada for s390x.
- Don't build fortran for crosses.  Don't depend on gmp either.
- Re-add dejagnu and expect build dependencies if running the testsuite.
- Require gcc-ada build dependency only if building ada.
* Thu Jan 26 2006 sndirsch@suse.de
- no longer use sysroot for cross-avr to fix linker error
  "this linker was not configured to use sysroots" (Bug #145783)
* Thu Jan 26 2006 ro@suse.de
- re-added glibc-devel-32bit to gcc.spec
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Sat Jan 14 2006 rguenther@suse.de
- Add gmp-devel to build dependencies.
* Thu Jan 12 2006 rguenther@suse.de
- Fix large-model patch.
- Enable large-model, blended CPU model and the multilib searchdir
  patches for STABLE, too.
* Mon Jan 09 2006 rguenther@suse.de
- Update to current SVN head.
- Patches for PR22533 and PR25130 no longer necessary.
* Sun Jan 08 2006 sndirsch@suse.de
- enabled build of g++ for cross-avr; crash-bobby (www.qfix.de)
  needs a C++ compiler
* Fri Jan 06 2006 aj@suse.de
- Update generic model patch.
* Tue Jan 03 2006 rguenther@suse.de
- Update to current SVN head.
- Workaround for PR25023 should be no longer necessary.
- Add patch for PR25130.
- Add patches from RH SRPM, java fixes, ia64 ssp support,
  s390 and ppc64 atomic fixes.
* Fri Dec 30 2005 aj@suse.de
- Do not package static java libraries since linking statically
  with them will not really work.
- Update to current SVN head.
* Thu Dec 22 2005 rguenther@suse.de
- Add patch for generic CPU model (x86_64 only) for BETA.
* Wed Dec 21 2005 rguenther@suse.de
- Enable checking for BETA.
- Enable large-model patch for BETA.
- Enable patch for PR20425 for BETA.
* Wed Dec 21 2005 aj@suse.de
- Update to current SVN head.
* Mon Dec 19 2005 rguenther@suse.de
- Add patch for PR25310.
- Remove libssp again, glibc has the required support now.
- Remove SPARCles from the spec file.
- Downgrade checking to release checking in STABLE.
- Fix all unpackaged symlinks.
* Thu Dec 15 2005 rguenther@suse.de
- Disable patch for PR20425 for stable.
- Fix libssp location for ppc.
* Mon Dec 12 2005 rguenther@suse.de
- Fix 64bit libssp install on ppc.
- Update patch for PR20425.
* Sun Dec 11 2005 aj@suse.de
- Update to current SVN head.
- Enable libssp.
* Fri Dec 09 2005 rguenther@suse.de
- Update to current SVN head.
- C++ strict aliasing warnings now upstream.
- Patch for PR24908 no longer necessary.
- Add patches for PR25180, PR25311 and PR20425.
- Enable Ada workaround for hppa, too.
- Enable --enable-secureplt for ppc and ppc64 targets.
* Wed Nov 30 2005 rguenther@suse.de
- Update to current SVN head.
- Add patches for PR24823 and PR24908.
* Thu Nov 24 2005 rguenther@suse.de
- Add patch for PR24982.
- Add workaround for PR25023.
* Wed Nov 23 2005 rguenther@suse.de
- Update to current SVN head.
- Add different fix for PR22533.
- Disable Ada workarounds for s390 and s390x.
- Add patch for PR24626.
- Patches for PR20928, PR24172 and PR23717 no longer necessary.
- Ada EH on s390 fixed upstream.
- Add patch to disable aliasing-warnings in std::string.
* Fri Nov 18 2005 schwab@suse.de
- Fix Ada library links.
* Wed Nov 16 2005 rguenther@suse.de
- Update to current SVN head.
- Patch for PR22509 no longer necessary.
- No more reversion of AJs patch to libgfortran.
- Disable inst-prefix-dir.patch.
- Re-enable Ada workarounds, fix Ada EH on s390.
* Thu Nov 10 2005 rguenther@suse.de
- Update to current SVN head.
- Check if we accidentially end up with make -j0 and fix it.
- Update patch for PR23948.
- Patches for PR24627 and PR24230 no longer necessary.
- Revert patch from AJ to libgfortran.h.
* Wed Nov 02 2005 rguenther@suse.de
- Update to current SVN head.
- Patches for PR24225, PR24351 no longer necessary.
- Add patches for PR24230, PR24627, PR22509.
- Disable some of the ada workarounds.
- Disable java for arm.
* Tue Nov 01 2005 rguenther@suse.de
- Exchange patch for PR24351.
* Thu Oct 27 2005 rguenther@suse.de
- Add patch for PR24351.
- Use libstdc++ allocator "new" instead of default "mt"
  for compatibility and possibly LSB3.0 conformance.
* Mon Oct 24 2005 rguenther@suse.de
- Update to current CVS head.
- Add patch for PR24225.
* Wed Oct 19 2005 rguenther@suse.de
- Update to current CVS head.
- Disable strict-aliasing patch.
- Patch for PR24255 is no longer needed.
- Fix RPM_OPT_FLAGS for cross-avr to not include
  -march/cpu/tune stuff.
* Fri Oct 14 2005 rguenther@suse.de
- Add patch for PR24172.
- Add patch for PR24255.
* Wed Oct 12 2005 rguenther@suse.de
- Update to current CVS head.
- Add patch for PR23948.
- Update strict-aliasing patch.
- Apply patch6 to ppc/ppc64, too.
* Mon Oct 10 2005 rguenther@suse.de
- Add patch to warn about papering over strict-aliasing bugs.
* Sat Oct 08 2005 aj@suse.de
- Update to current CVS head.
* Sat Oct 01 2005 schwab@suse.de
- Update to current CVS head.
- Add workaround for PR22533.
* Thu Sep 22 2005 schwab@suse.de
- Build Ada with -O0 and reenable.
* Tue Sep 20 2005 aj@suse.de
- Update to current CVS head.
- Add patch for PR22438.
- Disable Ada on ppc, s390, s390x for now.
- Fix .la files.
* Mon Sep 19 2005 aj@suse.de
- Update to current CVS head.
* Fri Sep 16 2005 aj@suse.de
- Update to CVS Head.
* Fri Sep 09 2005 schwab@suse.de
- Update to current CVS.
* Tue Sep 06 2005 schwab@suse.de
- Disable testsuite for now.
* Sun Sep 04 2005 schwab@suse.de
- Avoid strict aliasing warning.
* Sat Sep 03 2005 schwab@suse.de
- Update to CVS HEAD.
* Fri Aug 26 2005 aj@suse.de
- Update to current CVS to fix GCC bug #23546.
* Thu Aug 25 2005 matz@suse.de
- Update to current CVS.
- Enable java on hppa.
* Tue Aug 23 2005 meissner@suse.de
- Applied bugfix for fortify checking from Jakub Jelinek.
  (gcc PR middle-end/23484)
* Thu Aug 18 2005 matz@suse.de
- Update to current CVS.
* Wed Aug 17 2005 matz@suse.de
- Enable Ada on hppa.
* Tue Aug 16 2005 jw@suse.de
- cross-avr-gcc: Enabled avr2 support in micro-cross.spec.in
  fixes #105206
- micro-cross.spec.in more robust against gcc.spec changes.
* Thu Aug 11 2005 aj@suse.de
- Fix PR23326 [#99249 - kopete miscompilation].
- Update to current CVS for:
  * Fix PR23312 [ada ICEs]
  * Fix PR23266 [C++ ICE]
* Thu Aug 11 2005 aj@suse.de
- Update to current CVS.
- Add gcc-locale package again [#103757].
- Fix gcc-mainline 64bit lib names.
* Sun Aug 07 2005 matz@suse.de
- Update to current CVS.
- Fixes PR23192, which results in miscompilation of libpcap [#102460].
- Don't build nof libs on pcc.
* Sat Aug 06 2005 schwab@suse.de
- Also fix cross-avr specfile.
* Fri Aug 05 2005 schwab@suse.de
- Fix cross specfiles.
* Fri Aug 05 2005 matz@suse.de
- Package nof dir on ppc again.
- Put 64bit libs into separate rpms on ppc.
- Rename gnat and gnat-runtime to gcc-ada resp. libada.
* Fri Aug 05 2005 matz@suse.de
- Update to current CVS.
- Made libgcj (and friends) not biarch.
- Added libgcjawt for OpenOffice.
* Wed Jul 27 2005 matz@suse.de
- Update to current CVS.
* Wed Jul 20 2005 matz@suse.de
- Update to current CVS.
* Thu Jul 14 2005 matz@suse.de
- Update to current CVS.
* Wed Jul 13 2005 schwab@suse.de
- Parallel build fix.
- Properly detect ppc64 kernel.
* Fri Jul 01 2005 aj@suse.de
- Update to current CVS.
* Fri Jun 24 2005 matz@suse.de
- Fix partly empty c++config.h also for ppc.
- Fix libstdc++-devel filelist.
* Thu Jun 23 2005 matz@suse.de
- Fix use of wrong macro, leading to partly empty c++config.h.
* Tue Jun 21 2005 matz@suse.de
- Update to current CVS.
- Add fix for PR21721 (ia64 p0 problem).
- Add fix for PR22028.
* Mon Jun 13 2005 matz@suse.de
- Update to current CVS.
- Pull fix for PR21171 from mainline (should fix grub, #84600).
- Add fix for PR21985 (also a grub problem).
* Thu Jun 09 2005 schwab@suse.de
- Update to current CVS.
- Fix broken unwind info in profiling code.
* Fri Jun 03 2005 matz@suse.de
- Update to current CVS.
- Workaround for PR21041.
* Sun May 29 2005 aj@suse.de
- Update to current CVS.
- Package pre_checkin.sh so that Robert can use our package.
* Thu May 26 2005 schwab@suse.de
- Fix fortify patch.
* Thu May 26 2005 aj@suse.de
- Update to current CVS.
* Sun May 22 2005 aj@suse.de
- Update to current CVS.
- Fix visibility hidden problems PR C++/19664 and
  PR middle-end/20218.
* Sat May 21 2005 aj@suse.de
- Update to current CVS.
* Thu May 19 2005 schwab@suse.de
- Update to current CVS, fixes glibc miscompilation.
* Wed May 18 2005 aj@suse.de
- Update to current CVS - should fix ia64
  ICEs.
* Wed May 18 2005 aj@suse.de
- Update to current CVS.
* Mon May 16 2005 aj@suse.de
- Update to current CVS.
- Fix PowerPC gcc-mainline package.
* Sun May 15 2005 aj@suse.de
- Update to current CVS.
- Fix warnings about uninitialized variables.
* Fri May 13 2005 matz@suse.de
- Fix cross-avr-gcc (uses now target=avr, not avr-elf).
* Thu May 12 2005 matz@suse.de
- Add gjnih to gcc-java.
* Thu May 12 2005 matz@suse.de
- Update to current CVS.
- Fix filelists (libgfortran.so and libmudflapth.so).
- Add cross-avr-gcc from jw@suse.de.
* Sat May 07 2005 matz@suse.de
- Add cross-alpha-icecream-backend.
* Wed May 04 2005 matz@suse.de
- Update to current CVS.
* Tue May 03 2005 schwab@suse.de
- Update to current CVS.
* Mon Apr 25 2005 matz@suse.de
- Fix endless loop in postreload on ia64.
* Sun Apr 24 2005 aj@suse.de
- Update to current CVS.
- Fix pre_checkin for gcc-mainline.
* Sat Apr 23 2005 aj@suse.de
- Update to current CVS.
- Fix one PRE bug.
* Sat Apr 23 2005 schwab@suse.de
- Provide/obsolete gcc-locale.
* Fri Apr 22 2005 matz@suse.de
- Fix ulimit call to use kbyte not mbyte.
* Fri Apr 22 2005 matz@suse.de
- Update to current CVS, which is a prerelease of 4.0.1.
* Sat Apr 16 2005 meissner@suse.de
- Added RH fortify extensions.
* Fri Apr 15 2005 matz@suse.de
- Update to current CVS.
- Fix PR20963: ICE compiling dosbox (preliminary patch).
* Wed Apr 13 2005 ro@suse.de
- fix last patch to apply
* Tue Apr 12 2005 schwab@suse.de
- Fix GCC PR20924: Wrong floating point flags for inline division.
* Tue Apr 12 2005 matz@suse.de
- Testpatch for GCC PR20973: miscompile of khtml.
* Mon Apr 11 2005 aj@suse.de
- Fix GCC PR20928: ICE compiling clisp.
- Fix GCC PR20929: ICE compiling mozilla.
* Sun Apr 10 2005 aj@suse.de
- Update to current CVS.
- Fix GCC PR20917: ICE compiling glibc on s390.
- Fix GCC PR20126: Miscompilation of python.
* Sat Apr 09 2005 aj@suse.de
- Update to current CVS.
* Fri Apr 08 2005 schwab@suse.de
- Build cross compiler backends for icecream.
* Fri Apr 08 2005 aj@suse.de
- Update to current CVS.
* Thu Apr 07 2005 aj@suse.de
- Update to current CVS.
* Thu Apr 07 2005 meissner@suse.de
- Add a patch for PR 20739 (ncurses bugfix)
* Wed Apr 06 2005 aj@suse.de
- Update to current CVS.
- Require gettext packages for build.
* Tue Apr 05 2005 aj@suse.de
- Update to current CVS.
* Fri Apr 01 2005 aj@suse.de
- Add fixes for Arm from Ulrich Hecht.
* Fri Apr 01 2005 aj@suse.de
- Update to current CVS.
- Fix GCC PR20635.
* Wed Mar 30 2005 aj@suse.de
- Update to current CVS.
* Mon Mar 28 2005 aj@suse.de
- Update to current CVS.
- build multiarch on PPC.
- Add one fix for GCC PR19345.
* Fri Mar 25 2005 schwab@suse.de
- Update to current CVS.
* Sun Mar 20 2005 aj@suse.de
- Update to current CVS.
* Thu Mar 17 2005 aj@suse.de
- Update to current CVS.
* Sat Mar 12 2005 aj@suse.de
- Update to current CVS.
* Thu Mar 10 2005 aj@suse.de
- Update to current CVS.
* Mon Mar 07 2005 aj@suse.de
- Update to current CVS.
* Fri Mar 04 2005 schwab@suse.de
- Update to current CVS.
* Mon Feb 28 2005 aj@suse.de
- Update to current CVS.
* Sat Feb 26 2005 aj@suse.de
- Update to current CVS.
* Wed Feb 23 2005 aj@suse.de
- Update to current CVS.
* Sun Feb 20 2005 aj@suse.de
- Update to current CVS.
- Fix PR20017.
* Fri Feb 18 2005 aj@suse.de
- Update to current CVS.
* Thu Feb 17 2005 schwab@suse.de
- Add timeout to ACATS test script.
* Thu Feb 17 2005 aj@suse.de
- Update to current CVS.
* Tue Feb 15 2005 schwab@suse.de
- Update to current CVS.
- Apply ada-nonopt.patch also on ppc.
* Mon Feb 14 2005 matz@suse.de
- Don't use icecream, strip senseless warning options from
  RPM_OPT_FLAGS.
* Fri Feb 11 2005 schwab@suse.de
- Update to current CVS.
* Wed Feb 09 2005 aj@suse.de
- Update to current CVS.
* Tue Feb 08 2005 aj@suse.de
- Update to current CVS.
* Thu Feb 03 2005 aj@suse.de
- Update to current CVS.
* Wed Feb 02 2005 aj@suse.de
- Update to current CVS.
* Sun Jan 30 2005 aj@suse.de
- Update to current CVS.
* Fri Jan 28 2005 aj@suse.de
- Update to current CVS.
* Wed Jan 26 2005 aj@suse.de
- Update to current CVS.
* Tue Jan 25 2005 meissner@suse.de
- Added sentinel-c++.diff to avoid faulty sentinel
  warnings due to C++ NULL being __null.
* Mon Jan 24 2005 aj@suse.de
- Update to current CVS.
* Thu Jan 20 2005 aj@suse.de
- Update to current CVS.
* Wed Jan 19 2005 aj@suse.de
- Install C++ headers into /usr/include/c++/<version>.
- Fix c++config.h for multilib systems.
- Remove old obsoletes/provides for gjava, gpp, gccinfo, gobjc,
  minigcc and gnat-3.13p-runtime.
- Update to current CVS.
* Sun Jan 16 2005 aj@suse.de
- Enable ada on s390x.
- Update to current CVS.
* Fri Jan 14 2005 aj@suse.de
- Update to current CVS.
* Wed Jan 12 2005 aj@suse.de
- Update to current CVS.
- Enable ada on s390.
* Tue Jan 11 2005 aj@suse.de
- Update to current CVS.
* Mon Jan 10 2005 aj@suse.de
- Update to current CVS.
- Disable testsuite run for now.
* Sun Jan 09 2005 aj@suse.de
- Update to current CVS.
- Always run testsuite for gcc-mainline.
* Sat Jan 08 2005 aj@suse.de
- Update to current CVS.
* Mon Jan 03 2005 aj@suse.de
- Update to current CVS.
- Remove obsolete patches.
* Sun Jan 02 2005 schwab@suse.de
- Fix names of installed Ada programs.
- Update tree-sra patch.
* Sun Jan 02 2005 aj@suse.de
- Update to current CVS.
* Fri Dec 31 2004 aj@suse.de
- Update to current CVS.
- Fix gcc-mainline build.
* Mon Dec 27 2004 aj@suse.de
- Update to current CVS.
* Thu Dec 23 2004 aj@suse.de
- Update to current CVS.
* Fri Dec 17 2004 aj@suse.de
- Update to current CVS.
* Wed Dec 15 2004 aj@suse.de
- Update to current CVS.
* Tue Dec 14 2004 schwab@suse.de
- Update to current CVS.
* Mon Dec 13 2004 aj@suse.de
- Update to current CVS.
* Fri Dec 10 2004 schwab@suse.de
- Fix requires for mainline build.
* Thu Dec 09 2004 aj@suse.de
- Update to current CVS.
- Fix mainline build.
* Wed Dec 08 2004 aj@suse.de
- Update to current CVS.
* Sat Dec 04 2004 schwab@suse.de
- Update to current CVS.
* Tue Nov 30 2004 aj@suse.de
- Update to current CVS.
* Sun Nov 28 2004 schwab@suse.de
- Update to current CVS.
- Enable Ada on ppc.
* Tue Nov 23 2004 schwab@suse.de
- Add proposed fix for PR17746.
- Work around PR17356.
- Enable Ada on ia64.
* Mon Nov 22 2004 aj@suse.de
- Update to current CVS.
* Thu Nov 18 2004 schwab@suse.de
- Update to current CVS.
* Sun Nov 14 2004 schwab@suse.de
- Update to current CVS.
- Use libunwind on ia64.
* Mon Nov 08 2004 schwab@suse.de
- Update to current CVS.
- Disable broken patch.
* Sat Nov 06 2004 schwab@suse.de
- Update to current CVS.
* Mon Nov 01 2004 schwab@suse.de
- Update to current CVS.
* Wed Oct 27 2004 aj@suse.de
- update to current CVS
- add some bugfixes.
* Mon Oct 25 2004 aj@suse.de
- Enable Ada for x86 and x86-64 architectures.
- Rename gnat to gcc-ada and gnat-runtime to libada.
- Update to current CVS.
* Fri Oct 22 2004 aj@suse.de
- Update to current CVS.
* Mon Oct 18 2004 aj@suse.de
- Update to current CVS.
* Sun Oct 17 2004 aj@suse.de
- Update to current CVS.
* Wed Oct 13 2004 aj@suse.de
- Update to current CVS.
- Fix #17906.
* Tue Oct 12 2004 aj@suse.de
- Update to current CVS.
- Fix pr17520.
* Sun Oct 10 2004 aj@suse.de
- Update to current CVS.
* Fri Oct 08 2004 aj@suse.de
- Update to current CVS.
* Fri Oct 01 2004 aj@suse.de
- Update to current CVS.
- Remove now unneeded patch.
* Wed Sep 29 2004 aj@suse.de
- Update to current CVS.
* Fri Sep 24 2004 aj@suse.de
- Remove obsolete patch for head +1.
* Fri Sep 24 2004 schwab@suse.de
- Update to current CVS.
* Mon Sep 20 2004 aj@suse.de
- Update to current CVS.
* Sat Sep 18 2004 schwab@suse.de
- Remove extra header.
* Sat Sep 18 2004 aj@suse.de
- Update to current CVS.
* Fri Sep 17 2004 aj@suse.de
- Update to current CVS.
* Thu Sep 16 2004 aj@suse.de
- Update to current CVS.
* Wed Sep 15 2004 aj@suse.de
- Update to current CVS.
* Tue Sep 14 2004 aj@suse.de
- Update to current CVS.
- Fix spec file for PPC.
- Add patch to fix some aliasing issues.
* Mon Sep 13 2004 aj@suse.de
- GCC 3.5 is now GCC 4.0.
- Update to current CVS.
- Fix package list.
* Fri Sep 10 2004 aj@suse.de
- Do no pack libgcc_s.so.1 twice.
* Thu Sep 09 2004 aj@suse.de
- Update to current CVS.
- Adjust spec file for changes.
* Thu Sep 02 2004 aj@suse.de
- Fix for powerpc.
- Update to current CVS.
* Fri Aug 27 2004 aj@suse.de
- Use DESTDIR again after setting LD_LIBRARY_PATH.
* Fri Aug 27 2004 aj@suse.de
- Update to current 3.5 CVS.
- Do not use DESTDIR/RPM_BUILD_ROOT since libtool will not
  install java correctly with it.
* Fri Aug 20 2004 aj@suse.de
- Fix RPM_OPT_FLAGS.
- Update to current 3.5 CVS.
* Thu Aug 19 2004 aj@suse.de
- Update to current 3.5 CVS.
* Mon Aug 09 2004 aj@suse.de
- Update to current 3.5 CVS.
* Mon Jul 19 2004 aj@suse.de
- Update to current 3.5 CVS.
- Fix /usr install.
* Wed Jun 16 2004 aj@suse.de
- Update to current 3.5 CVS.
- Install into /usr.
* Thu Jun 10 2004 aj@suse.de
- Fix build on PPC.
- Update to current 3.5 CVS.
* Wed Jun 09 2004 aj@suse.de
- Update to current 3.5 CVS.
* Fri Jun 04 2004 aj@suse.de
- Update to current 3.5 CVS.
- Fix spec file for x86-64 and hppa.
* Thu Jun 03 2004 aj@suse.de
- Fix spec file.
- Update to current 3.5 CVS.
* Wed Jun 02 2004 aj@suse.de
- Update to current 3.5 CVS, rework spec file.
* Thu May 27 2004 aj@suse.de
- Update to GCC 3.5 CVS.
* Wed Apr 28 2004 aj@suse.de
- Update to current CVS.
* Tue Apr 20 2004 aj@suse.de
- Avoid warnings.
- Update to current 3.4 CVS.
* Fri Apr 09 2004 aj@suse.de
- Update to current 3.4 CVS.
* Sat Mar 13 2004 aj@suse.de
- Fix spec file.
- Update to current 3.4 CVS.
* Tue Mar 09 2004 aj@suse.de
- Update to current 3.4 CVS.
* Tue Mar 02 2004 aj@suse.de
- Update to current 3.4 CVS.
* Fri Feb 27 2004 aj@suse.de
- Update to current 3.4 CVS.
* Wed Feb 18 2004 aj@suse.de
- Update to current 3.4 CVS.
* Mon Feb 09 2004 aj@suse.de
- Update to current 3.4 CVS.
* Mon Feb 02 2004 aj@suse.de
- Update to current CVS.
* Mon Jan 26 2004 aj@suse.de
- Update to current CVS.
* Fri Jan 23 2004 aj@suse.de
- Update to current CVS.
* Thu Jan 22 2004 aj@suse.de
- Update to current CVS.
* Mon Jan 19 2004 aj@suse.de
- Update to current CVS.
* Fri Jan 16 2004 aj@suse.de
- Update to current CVS.
* Wed Jan 14 2004 aj@suse.de
- Update to current CVS.
- Fix spec file.
* Tue Jan 13 2004 aj@suse.de
- Fix package list.
* Tue Jan 13 2004 aj@suse.de
- Disable Ada on AMD64.
* Tue Jan 13 2004 aj@suse.de
- Update to current CVS.
* Mon Jan 12 2004 aj@suse.de
- Update to current CVS.
* Wed Jan 07 2004 aj@suse.de
- Update to current CVS.
* Tue Dec 16 2003 aj@suse.de
- Update to current CVS.
- change config-dist.sh to check-build.sh.
- minimal-toc is not needed anymore on ppc64.
- Fix PPC nof file list.
* Wed Dec 10 2003 aj@suse.de
- Update to current CVS.
* Thu Dec 04 2003 aj@suse.de
- Update to current CVS.
- Fix package list.
* Wed Dec 03 2003 aj@suse.de
- Update to current CVS.
* Sun Nov 30 2003 aj@suse.de
- Update to current CVS.
* Fri Nov 28 2003 aj@suse.de
- Update to current CVS.
* Wed Oct 29 2003 aj@suse.de
- Fix package list for i386.
* Wed Oct 29 2003 aj@suse.de
- New package.
openSUSE Build Service is sponsored by