Hello community,
here is the log from the commit of package gcc45 for openSUSE:Factory checked in at Tue Feb 1 15:09:27 CET 2011.
-------- --- gcc45/cross-hppa-gcc-icecream-backend.changes 2011-01-11 17:28:40.000000000 +0100 +++ /mounts/work_src_done/STABLE/gcc45/cross-hppa-gcc-icecream-backend.changes 2011-01-25 16:03:46.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Jan 25 15:03:10 UTC 2011 - rguenther@novell.com + +- Add patch to accept ppl version 0.11. + +------------------------------------------------------------------- cross-i386-gcc-icecream-backend.changes: same change cross-ia64-gcc-icecream-backend.changes: same change cross-ppc64-gcc-icecream-backend.changes: same change cross-ppc-gcc-icecream-backend.changes: same change cross-s390-gcc-icecream-backend.changes: same change cross-s390x-gcc-icecream-backend.changes: same change cross-x86_64-gcc-icecream-backend.changes: same change gcc45.changes: same change gcc45-testresults.changes: same change libffi45.changes: same change libgcj45.changes: same change
calling whatdependson for head-i586
New: ---- gcc45-allow-new-ppl.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences: ------------------ ++++++ cross-hppa-gcc-icecream-backend.spec ++++++ --- /var/tmp/diff_new_pack.p4ngC8/_old 2011-02-01 15:06:22.000000000 +0100 +++ /var/tmp/diff_new_pack.p4ngC8/_new 2011-02-01 15:06:22.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package cross-hppa-gcc-icecream-backend (Version 4.5.1_20101208) +# spec file for package cross-hppa-gcc-icecream-backend # # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -47,7 +47,7 @@
Url: http://gcc.gnu.org/ Version: 4.5.1_20101208 -Release: 2 +Release: 3 %define gcc_version %(echo %version | sed 's/_.*//') %define gcc_dir_version %(echo %gcc_version | cut -d '.' -f 1-2) %define snapshot_date %(echo %version | sed 's/[34].[0-9].[0-6]//' | sed 's/_/-/') @@ -81,6 +81,7 @@ Patch30: gcc43-no-unwind-tables.diff Patch31: pr43270.diff Patch32: gcc45-disable-ipa-sra-O2.diff +Patch33: gcc45-allow-new-ppl.diff # A set of patches from the RH srpm Patch51: gcc41-ia64-stack-protector.patch Patch55: gcc41-java-slow_pthread_self.patch @@ -178,6 +179,7 @@ %patch30 %patch31 %patch32 +%patch33 %patch51 %patch55 %patch57
cross-i386-gcc-icecream-backend.spec: same change cross-ia64-gcc-icecream-backend.spec: same change cross-ppc64-gcc-icecream-backend.spec: same change cross-ppc-gcc-icecream-backend.spec: same change cross-s390-gcc-icecream-backend.spec: same change cross-s390x-gcc-icecream-backend.spec: same change cross-x86_64-gcc-icecream-backend.spec: same change gcc45.spec: same change gcc45-testresults.spec: same change libffi45.spec: same change libgcj45.spec: same change
++++++ gcc45-allow-new-ppl.diff ++++++ Index: configure =================================================================== --- configure (revision 159133) +++ configure (revision 159134) @@ -5801,8 +5801,6 @@ fi
# Check for PPL -ppl_major_version=0 -ppl_minor_version=10 ppllibs=" -lppl_c -lppl -lgmpxx" pplinc=
@@ -5859,8 +5857,8 @@ fi if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $pplinc $gmpinc" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version $ppl_major_version.$ppl_minor_version of PPL" >&5 -$as_echo_n "checking for version $ppl_major_version.$ppl_minor_version of PPL... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.10 (or later revision) of PPL" >&5 +$as_echo_n "checking for version 0.10 (or later revision) of PPL... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "ppl_c.h" @@ -5868,7 +5866,7 @@ int main () {
- #if PPL_VERSION_MAJOR != $ppl_major_version || PPL_VERSION_MINOR != $ppl_minor_version + #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 choke me #endif
Index: configure.ac =================================================================== --- configure.ac (revision 159133) +++ configure.ac (revision 159134) @@ -1531,8 +1531,6 @@ AC_ARG_WITH(boot-ldflags, AC_SUBST(poststage1_ldflags)
# Check for PPL -ppl_major_version=0 -ppl_minor_version=10 ppllibs=" -lppl_c -lppl -lgmpxx" pplinc=
@@ -1573,9 +1571,9 @@ ENABLE_PPL_CHECK=yes) if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $pplinc $gmpinc" - AC_MSG_CHECKING([for version $ppl_major_version.$ppl_minor_version of PPL]) + AC_MSG_CHECKING([for version 0.10 (or later revision) of PPL]) AC_TRY_COMPILE([#include "ppl_c.h"],[ - #if PPL_VERSION_MAJOR != $ppl_major_version || PPL_VERSION_MINOR != $ppl_minor_version + #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 choke me #endif ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); ppllibs= ; pplinc= ; with_ppl=no ])
++++++ gcc.spec.in ++++++ --- /var/tmp/diff_new_pack.p4ngC8/_old 2011-02-01 15:06:24.000000000 +0100 +++ /var/tmp/diff_new_pack.p4ngC8/_new 2011-02-01 15:06:24.000000000 +0100 @@ -203,6 +203,7 @@ Patch30: gcc43-no-unwind-tables.diff Patch31: pr43270.diff Patch32: gcc45-disable-ipa-sra-O2.diff +Patch33: gcc45-allow-new-ppl.diff # A set of patches from the RH srpm Patch51: gcc41-ia64-stack-protector.patch Patch55: gcc41-java-slow_pthread_self.patch @@ -910,6 +911,7 @@ %patch30 %patch31 %patch32 +%patch33 %patch51 %patch55 %patch57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...