public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 4.4.0-0.19
Date: Mon, 29 Jun 2026 12:24:08 GMT [thread overview]
Message-ID: <178273584852.1.8032819927679151279.rpms-gcc-3b4372beb405@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 3b4372beb405a6d7e413887b4ef3f50e00c20eb2
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date : 2009-02-16T22:11:04+00:00
Stats : +13/-54 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/3b4372beb405a6d7e413887b4ef3f50e00c20eb2?branch=rhel-f41-base
Log:
4.4.0-0.19
---
diff --git a/.cvsignore b/.cvsignore
index ffccd91..3ffde1f 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1,3 +1,3 @@
fastjar-0.97.tar.gz
-gcc-4.4.0-20090213.tar.bz2
+gcc-4.4.0-20090216.tar.bz2
cloog-ppl-0.15.tar.gz
diff --git a/gcc.spec b/gcc.spec
index a2c7948..eed14dc 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%define DATE 20090213
-%define SVNREV 144154
+%define DATE 20090216
+%define SVNREV 144214
%define gcc_version 4.4.0
# Note, gcc_release must be integer, if you want to add suffixes to
# %{release}, append them after %{gcc_release} on Release: line.
-%define gcc_release 0.18
+%define gcc_release 0.19
%define _unpackaged_files_terminate_build 0
%define multilib_64_archs sparc64 ppc64 s390x x86_64
%define include_gappletviewer 1
@@ -1762,6 +1762,14 @@ fi
%doc rpm.doc/changelogs/libmudflap/ChangeLog*
%changelog
+* Mon Feb 16 2009 Jakub Jelinek <jakub@redhat.com> 4.4.0-0.19
+- update from trunk
+ - PRs c++/39070, fortran/36528, fortran/36703, fortran/38259,
+ libstdc++/39168, target/37049, target/38056, target/39149,
+ target/39162, target/39196
+ - ix86 peephole fix (#485729, PR target/39152)
+ - uglify function parameter names in gthr*.h (#485619)
+
* Fri Feb 13 2009 Jakub Jelinek <jakub@redhat.com> 4.4.0-0.18
- update from trunk
- PRs c++/30111, c++/38950, c++/39153, c/35444, middle-end/39154,
diff --git a/gcc44-hack.patch b/gcc44-hack.patch
index 4880b12..da00568 100644
--- a/gcc44-hack.patch
+++ b/gcc44-hack.patch
@@ -52,55 +52,6 @@
# Rules to build gnatlib.
.PHONY: gnatlib gnatlib-plain gnatlib-sjlj gnatlib-zcx gnatlib-shared oscons
---- libjava/classpath/native/plugin/gcjwebplugin.cc.jj 2009-01-14 12:08:34.000000000 +0100
-+++ libjava/classpath/native/plugin/gcjwebplugin.cc 2009-01-15 21:20:17.000000000 +0100
-@@ -45,7 +45,7 @@ exception statement from your version. *
-
- // Netscape plugin API includes.
- #include <npapi.h>
--#include <npupp.h>
-+#include <npfunctions.h>
-
- // GLib includes.
- #include <glib.h>
-@@ -827,7 +827,7 @@ GCJ_URLNotify (NPP instance, const char*
- PLUGIN_DEBUG ("GCJ_URLNotify return");
- }
-
--jref
-+void *
- GCJ_GetJavaClass (void)
- {
- PLUGIN_DEBUG ("GCJ_GetJavaClass");
-@@ -1669,17 +1669,17 @@ NP_Initialize (NPNetscapeFuncs* browserT
- // Return to the browser the plugin functions that we implement.
- pluginTable->version = (NP_VERSION_MAJOR << 8) + NP_VERSION_MINOR;
- pluginTable->size = sizeof (NPPluginFuncs);
-- pluginTable->newp = NewNPP_NewProc (GCJ_New);
-- pluginTable->destroy = NewNPP_DestroyProc (GCJ_Destroy);
-- pluginTable->setwindow = NewNPP_SetWindowProc (GCJ_SetWindow);
-- pluginTable->newstream = NewNPP_NewStreamProc (GCJ_NewStream);
-- pluginTable->destroystream = NewNPP_DestroyStreamProc (GCJ_DestroyStream);
-- pluginTable->asfile = NewNPP_StreamAsFileProc (GCJ_StreamAsFile);
-- pluginTable->writeready = NewNPP_WriteReadyProc (GCJ_WriteReady);
-- pluginTable->write = NewNPP_WriteProc (GCJ_Write);
-- pluginTable->print = NewNPP_PrintProc (GCJ_Print);
-- pluginTable->urlnotify = NewNPP_URLNotifyProc (GCJ_URLNotify);
-- pluginTable->getvalue = NewNPP_GetValueProc (GCJ_GetValue);
-+ pluginTable->newp = (NPP_NewProcPtr) (GCJ_New);
-+ pluginTable->destroy = (NPP_DestroyProcPtr) (GCJ_Destroy);
-+ pluginTable->setwindow = (NPP_SetWindowProcPtr) (GCJ_SetWindow);
-+ pluginTable->newstream = (NPP_NewStreamProcPtr) (GCJ_NewStream);
-+ pluginTable->destroystream = (NPP_DestroyStreamProcPtr) (GCJ_DestroyStream);
-+ pluginTable->asfile = (NPP_StreamAsFileProcPtr) (GCJ_StreamAsFile);
-+ pluginTable->writeready = (NPP_WriteReadyProcPtr) (GCJ_WriteReady);
-+ pluginTable->write = (NPP_WriteProcPtr) (GCJ_Write);
-+ pluginTable->print = (NPP_PrintProcPtr) (GCJ_Print);
-+ pluginTable->urlnotify = (NPP_URLNotifyProcPtr) (GCJ_URLNotify);
-+ pluginTable->getvalue = (NPP_GetValueProcPtr) (GCJ_GetValue);
-
- initialized = true;
-
--- gcc/ada/make.adb 2008-11-07 23:00:32.000000000 +0100
+++ gcc/ada/make.adb 2009-01-16 17:55:02.000000000 +0100
@@ -8039,6 +8039,7 @@ package body Make is
diff --git a/sources b/sources
index f967198..2568471 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz
-0acb344a0e9609873db234f701b7095b gcc-4.4.0-20090213.tar.bz2
+0f5cb535b5450a8d61b14f690700a54c gcc-4.4.0-20090216.tar.bz2
716b7a0823f96c9d02c1703a9c47d387 cloog-ppl-0.15.tar.gz
reply other threads:[~2026-06-29 12:24 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178273584852.1.8032819927679151279.rpms-gcc-3b4372beb405@fedoraproject.org \
--to=jakub@fedoraproject.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox