Processing commands for cont...@bugs.debian.org:
> tags 564232 +patch
Bug #564232 [gnat-4.4] gnat-4.4: bind a socket in Ada program fails on
kfreebsd-*
Added tag(s) patch.
> user debian-...@lists.debian.org
Setting user to debian-...@lists.debian.org (was petr.salin...@seznam.cz).
> usertag 56423
--- Comment #5 from jason at gcc dot gnu dot org 2010-01-15 06:18 ---
*** This bug has been marked as a duplicate of 42701 ***
--
jason at gcc dot gnu dot org changed:
What|Removed |Added
--
--- Comment #11 from jason at gcc dot gnu dot org 2010-01-15 06:18 ---
*** Bug 42569 has been marked as a duplicate of this bug. ***
--
jason at gcc dot gnu dot org changed:
What|Removed |Added
--
original message-
De: "Thorsten Glaser" t...@mirbsd.de
A: "Xavier Grave" gr...@ipno.in2p3.fr
Copie à: 564...@bugs.debian.org, debian-...@lists.debian.org
Date: Thu, 14 Jan 2010 22:57:24 + (UTC)
-
> Xavier Gr
Xavier Grave dixit:
>#if defined (__FreeBSD__) || defined (__vxworks) || defined(__rtems__)
Make that:
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || \
defined(__vxworks) || defined(__rtems__)
bye,
//mirabilos
--
Sometimes they [people] care too much: pretty printers [and synta
--- Comment #10 from jason at gcc dot gnu dot org 2010-01-14 22:34 ---
Fixed.
--
jason at gcc dot gnu dot org changed:
What|Removed |Added
Status|NEW
--- Comment #9 from jason at gcc dot gnu dot org 2010-01-14 22:32 ---
Subject: Bug 42701
Author: jason
Date: Thu Jan 14 22:32:24 2010
New Revision: 155916
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155916
Log:
PR c++/42701
* call.c (build_new_method_call): Do
>
>> There is a big difference between (kernels of) Linux and FreeBSD in this:
>>
>> Linux:
>> struct sockaddr {
>> short sa_family;
>> char sa_data[14];
>> }
>> FreeBSD:
>> struct sockaddr {
>> unsigned char sa_len;
>> unsigned char sa_family;
>> char sa_data[14];
>> }
>>
>> Ada bindings ha
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Petr Salinger a écrit :
>> I'm new to Debian GNU/kFreeBSD and I came to it in order to solve a
>> FTBFS bug (561121) in package polyorb. Bug 561121 is a consequence of
>> bug 564232 (in gnat-4.4). I have found a fix for 564232 (tested up to
>> packagin
--- Comment #7 from jamborm at gcc dot gnu dot org 2010-01-14 18:02 ---
Fixed.
--
jamborm at gcc dot gnu dot org changed:
What|Removed |Added
Status|ASSIGNED
--- Comment #6 from jamborm at gcc dot gnu dot org 2010-01-14 18:00 ---
Subject: Bug 42706
Author: jamborm
Date: Thu Jan 14 18:00:34 2010
New Revision: 155911
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155911
Log:
2010-01-14 Martin Jambor
PR tree-optimization/427
LAST_UPDATED: Sun Jan 3 16:05:45 UTC 2010 (revision 155588)
Target: i486-kfreebsd-gnu
gcc version 4.5.0 20100103 (experimental) [trunk revision 155588] (Debian
4.5-20100103-1)
Native configuration is i486-pc-kfreebsd-gnu
=== g++ tests ===
Running target unix
LAST_UPDATED: Sun Jan 3 16:05:45 UTC 2010 (revision 155588)
Target: ia64-linux-gnu
gcc version 4.5.0 20100103 (experimental) [trunk revision 155588] (Debian
4.5-20100103-1)
Native configuration is ia64-unknown-linux-gnu
=== g++ tests ===
Running target unix
FAIL: g++.dg/graph
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
Priority|P3 |P1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42715
--- You ar
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
Priority|P3 |P1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42713
--- You ar
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
Priority|P3 |P1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42706
--- You ar
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
Priority|P3 |P1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42701
--- You ar
FYI: The status of the autoconf2.64 source package
in Debian's testing distribution has changed.
Previous version: (not in testing)
Current version: 2.64-2
--
This email is automatically generated once a day. As the installation of
new packages into testing happens multiple times a day you
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
Priority|P3 |P4
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42676
--- You ar
--- Comment #5 from jamborm at gcc dot gnu dot org 2010-01-14 16:07 ---
Patch posted to the mailing list:
http://gcc.gnu.org/ml/gcc-patches/2010-01/msg00667.html
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42706
--- You are receiving this mail because: ---
You are on the
--- Comment #4 from dodji at gcc dot gnu dot org 2010-01-14 15:56 ---
Candidate patch posted to
http://gcc.gnu.org/ml/gcc-patches/2010-01/msg00666.html
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42713
--- You are receiving this mail because: ---
You are on the CC list f
--- Comment #2 from rguenth at gcc dot gnu dot org 2010-01-14 15:43 ---
The patch for PR42739 also fixes this bug. Thus, duplicate.
*** This bug has been marked as a duplicate of 42739 ***
--
rguenth at gcc dot gnu dot org changed:
What|Removed |
--- Comment #3 from dodji at gcc dot gnu dot org 2010-01-14 14:39 ---
Here is a smaller reproducer:
template
struct S
{
};
template
struct S0
{
typedef T TT;
};
template
struct super_struct : S0
{
typedef S0 super;
};
template
struct S1 : super_struct
{
typedef s
I'm new to Debian GNU/kFreeBSD and I came to it in order to solve a
FTBFS bug (561121) in package polyorb. Bug 561121 is a consequence of
bug 564232 (in gnat-4.4). I have found a fix for 564232 (tested up to
packaging) and there is two solutions for me now :
- 1/ don't touch to gnat-4.4 and appl
--- Comment #8 from rguenth at gcc dot gnu dot org 2010-01-14 10:14 ---
Reduced testcase from PR42725:
namespace Glib {
class ustring {
public:
typedef unsigned size_type;
ustring(const char* src, size_type n);
ustring(const char* src);
};
}
namespace
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
BugsThisDependsOn||42739
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42698
--- You
26 matches
Mail list logo