<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel">
    <title>gmane.comp.gcc.libstdc++.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26058"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26057"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26056"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26055"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26053"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26049"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26047"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26036"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26034"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26032"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26031"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26030"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26027"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26023"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26022"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26021"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26018"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26017"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26016"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26014"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26058">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26058</link>
    <description>&lt;pre&gt;
Additional comment to that, the fact that the OS has clock_gettime with
CLOCK_REALTIME resp. gettimeofday still doesn't say anything about the
resolution/precision of the clock, you can have clock_gettime
(CLOCK_REALTIME, &amp;amp;tp) that only provides second or millisecond resolution,
or hundreds if microseconds, tens of nanoseconds etc.  There is clock_getres
in POSIX, but &amp;lt;chrono&amp;gt; doesn't query this and if the resolution decision
has to be static (nanoseconds vs. microseconds vs. seconds), I'd hope it
should be ok to always use nanoseconds duration, especially when most of the
important targets will either in 4.8.1+ or at least in 4.9.0+ use
clock_gettime.

Jakub

&lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-25T07:56:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26057">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26057</link>
    <description>&lt;pre&gt;
Yeah, I think that is reasonable, with one nit, see below.



In this _V2 inline namespace, I think we should change that:
    struct system_clock
    {
#ifdef _GLIBCXX_USE_CLOCK_REALTIME
      typedef chrono::nanoseconds                               duration;
#elif defined(_GLIBCXX_USE_GETTIMEOFDAY)
      typedef chrono::microseconds                              duration;
#else
      typedef chrono::seconds                                   duration;
#endif
into:
    struct system_clock
    {
      typedef chrono::nanoseconds                               duration;

Won't the templates then DTRT in:
  return time_point(duration(chrono::seconds(tv.tv_sec)
    + chrono::microseconds(tv.tv_usec)));
(multiply microseconds by 1000 and seconds by 1000000000)
      return system_clock::from_time_t(__sec);
(multiply seconds by 1000000000)?

While this change isn't really necessary for Linux, where usually
_GLIBCXX_USE_CLOCK_REALTIME will be in 4.8.1+ defined and thus the
nanoseconds resolution will be used anyw&lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-25T06:21:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26056">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26056</link>
    <description>&lt;pre&gt;

Right, ditto, yes.
 

If we want to care about C++11 ABI compat on release branches
(?), here's another solution.

It scraps the renaming/aliasing approach, and just creates a
compatibility-chrono.cc that mimics the default configuration in 4.8.0.
Users who specially-configured a build with --enable-libstdcxx-time
configure options in 4.8.0 are breaking an experimental
C++ ABI anyway, so I'm not going to solve for anything but the default
case.

For chrono.cc, there is an inline namespace that mangles system_clock
and steady_clock in a new way to prevent ambiguous uses. In addition, I
make a controversial decision and just forward-declare clocks that
libstdc++ cannot do correctly, instead of using typedefs that clearly
are only going to get us into trouble as we change things down the
road. That's probably only appropriate for trunk.

Flame on, cowboys, flame on.

This still doesn't solve the solaris 9/10 librt issue.

tested x86_64/linux

-benjamin



&lt;/pre&gt;</description>
    <dc:creator>Benjamin De Kosnik</dc:creator>
    <dc:date>2013-05-25T03:26:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26055">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26055</link>
    <description>&lt;pre&gt;
Right.


Or use the new ABI attribute so the "new" system_clock mangles
differently to the "old" system_clock.

I prefer to break it though - if we're going to paint ourselves into a
corner and insist on compatibility with semi-functional previous
releases we should stop calling it "experimental".  Alternatively,
while we still call it experimental, let's fix it properly and get it
right.


IMHO yes, that's a big issue.  I believe most users are more
interested in system_clock than in steady_clock, and we should provide
a nanosecond-resolution system_clock if the OS supports it.



Yeah, this stuff's hard.  But I hope we can get a stable ABI for 4.9,
even if it's incompatible with previous releases.

&lt;/pre&gt;</description>
    <dc:creator>Jonathan Wakely</dc:creator>
    <dc:date>2013-05-25T01:32:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26053">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26053</link>
    <description>&lt;pre&gt;
So you'll need conditional LDFLAGS for solaris 9 and 10 only?


This is ok.Thanks!

-benjamin

&lt;/pre&gt;</description>
    <dc:creator>Benjamin De Kosnik</dc:creator>
    <dc:date>2013-05-24T20:23:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26049">
    <title>Re: [google gcc-4_7,gcc-4_8,integration] Add bounds checks to vector&lt;bool&gt;</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26049</link>
    <description>&lt;pre&gt;
OK.


Diego.

&lt;/pre&gt;</description>
    <dc:creator>Diego Novillo</dc:creator>
    <dc:date>2013-05-24T18:22:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26047">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26047</link>
    <description>&lt;pre&gt;
Well, I've hand edited the Linux baseline_symbols.txt rather than really
regenerating (can't bootstrap/regtest that quickly on all arches),
but I see no reason why Solaris can't be done the same way.
If I understand it right, Solaris doesn't allow foo&amp;lt; at &amp;gt;VER_1 together
with foo&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;VER_2, thus the attached updated patch should contain what I
expect on Solaris, thus just regtest of that should reveal if the assumption
is right.

Ok, 4.8 x86_64/i686-linux bootstraps running now, will do trunk ones next,
and simultaneously with that ppc/ppc64/s390/s390x/arm-linux.

Jakub
2013-05-24  Jakub Jelinek  &amp;lt;jakub&amp;lt; at &amp;gt;redhat.com&amp;gt;

* src/c++11/chrono.cc: If _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL,
include unistd.h and sys/syscall.h.  If _GLIBCXX_COMPATIBILITY_CXX0X,
don't define system_clock::is_steady, system_clock::now() and
steady_clock::is_steady.
(std::chrono::system_clock::now()): If
_GLIBCXX_USE_CLOCK_GETTIME_SYSCALL, call
syscall (SYS_clock_gettime, ...) instead of clock_gettime (...).
(std::chrono::system_clock::now()&lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-24T15:32:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26036">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26036</link>
    <description>&lt;pre&gt;

Yep, I'd seen that.


I've now fired off the various Solaris bootstraps.  It may take until
tomorrow that I can report final results.

Rainer

&lt;/pre&gt;</description>
    <dc:creator>Rainer Orth</dc:creator>
    <dc:date>2013-05-24T13:51:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26034">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26034</link>
    <description>&lt;pre&gt;

I'm not so sure: to me, that's just an implementation detail.


It should work on the 4.8 branch (I'll include it in my bootstraps this
weekend), but on mainline the failures due to missing nanosleep/-lrt
will remain.

I've just successfully bootstrapped the following patch on
i386-pc-solaris2.10 and x86_64-unknown-linux-gnu.  It fixes the
libstdc++ testsuite failures I'd reported before.

Rainer


2013-05-24  Rainer Orth  &amp;lt;ro&amp;lt; at &amp;gt;CeBiTec.Uni-Bielefeld.DE&amp;gt;

gcc/cp:
* g++spec.c (TIMELIB): Define.
(WITHLIBC, SKIPOPT): Adjust values.
(lang_specific_driver): Add TIME_LIBRARY if not passed explicitly.

gcc:
* config/sol2.h (TIME_LIBRARY): Define.


&lt;/pre&gt;</description>
    <dc:creator>Rainer Orth</dc:creator>
    <dc:date>2013-05-24T13:35:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26032">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26032</link>
    <description>&lt;pre&gt;

It occured to me that there might be a far less intrusive option to still
allow a Solaris backport: instead of going the libstdc++.spec route
(which I still think is the correct way forward), statically handle -lrt
addition in g++spec.c, controlled by a macro defined only in config/sol2.h.

Such a patch could be added to mainline and 4.8 branch now, and mainline
later changed to use libstdc++.spec instead.

Rainer

&lt;/pre&gt;</description>
    <dc:creator>Rainer Orth</dc:creator>
    <dc:date>2013-05-24T09:00:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26031">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26031</link>
    <description>&lt;pre&gt;
Oops, posted too early, while that worked on Linux due to
_GLIBCXX_USE_CLOCK_MONOTONIC_SYSCALL, it didn't work when
_GLIBCXX_USE_CLOCK_MONOTONIC wasn't defined, the return of the other clock
now() result resulted in error.

So here is once more updated version that works even when
_GLIBCXX_USE_CLOCK_MONOTONIC isn't defined.

Jakub
2013-05-24  Jakub Jelinek  &amp;lt;jakub&amp;lt; at &amp;gt;redhat.com&amp;gt;

* src/c++11/chrono.cc: If _GLIBCXX_USE_CLOCK_MONOTONIC_SYSCALL,
include unistd.h and sys/syscall.h.  If _GLIBCXX_COMPATIBILITY_CXX0X,
don't define system_clock::is_steady, system_clock::now() and
steady_clock::is_steady.
(std::chrono::system_clock::now()): If
_GLIBCXX_USE_CLOCK_MONOTONIC_SYSCALL, call
syscall (SYS_clock_gettime, ...) instead of clock_gettime (...).
(std::chrono::system_clock::now()): Likewise.  Add weak attribute
if _GLIBCXX_COMPATIBILITY_CXX0X and compatibility-chrono.cc will
be non-empty.
* src/Makefile.am (cxx11_sources): Add compatibility-chrono.cc.
(compatibility-chrono.lo, compatibility-chrono.o): N&lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-24T08:58:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26030">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26030</link>
    <description>&lt;pre&gt;2013/5/24 Jakub Jelinek &amp;lt;jakub&amp;lt; at &amp;gt;redhat.com&amp;gt;:

Yes, steady_clock::is_steady needs to be true and to be usable within
constant expressions.

- Daniel

&lt;/pre&gt;</description>
    <dc:creator>Daniel Krügler</dc:creator>
    <dc:date>2013-05-24T08:54:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26027">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26027</link>
    <description>&lt;pre&gt;
Ugh, that makes =auto pretty much unbackportable, but it seems Solaris is
the only problematic OS here.  The goal of
_ZNSt6chrono12steady_clock3nowEv&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;GLIBCXX_3.4.19
already in 4.8.1 was to allow Linux users (and with partial backport of
=auto not including Solaris perhaps also FreeBSD/NetBSD/OpenBSD) to let
users that get C++ core language feature completeness also use this
(Jonathan/Benjamin, is that right?).

So, let's talk about other options, is constexpr/const on
std::chrono::steady_clock::is_steady
required by the standard (as in, could we export
_ZNSt6chrono12steady_clock9is_steadyE&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;GLIBCXX_3.4.19
and let the library say which case it is, it would be constexpr when
we know for sure, and a static variable otherwise)?
But looking at C++11 draft, in [time.clock.steady]
it even says that is_steady is true (then we are violating the standard
even when we represent steady_clock as typedef system_clock steady_clock;).

Thus, what about this version (just slightly modified, headers remain the
same, but we &lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-24T07:57:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26023">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26023</link>
    <description>&lt;pre&gt;
In that case, either the --enable-libstdcxx-time=auto patch needs to be
backported to 4.8.1, or at least a small portion of it (do that auto thing
on Solaris only)?
Have steady_clock::now() as &amp;lt; at &amp;gt;GLIBCXX_3.4.17 + &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;GLIBCXX_3.4.19 on Linux,
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;GLIBCXX_3.4.20 on Solaris, something else on other OSes would be quite
confusing.


Jakub

&lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-23T21:06:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26022">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26022</link>
    <description>&lt;pre&gt;

If I do so, I would probably get an abi_check failure: with your patch,
std::chrono::steady_clock::now() ends up in GLIBCXX_3.4.19 while it
should appear in GLIBCXX_3.4.20 since this is new in GCC 4.9.


Right, it only got enable by defaulting --enable-libstdcxx-time to auto.

Rainer

&lt;/pre&gt;</description>
    <dc:creator>Rainer Orth</dc:creator>
    <dc:date>2013-05-23T20:56:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26021">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26021</link>
    <description>&lt;pre&gt;
Ah, I see, gnu.ver has some
#ifdef HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT
#endif
guards there, does it work if you add it around the
GLIBCXX_3.4.17 std::chrono::steady_clock::now() definition?
Seems the solaris baseline_symbols.txt files don't meantion
this symbol, thus it wasn't exported before and thus the
compat definition there isn't really needed for Solaris.

Jakub

&lt;/pre&gt;</description>
    <dc:creator>Jakub Jelinek</dc:creator>
    <dc:date>2013-05-23T20:50:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26018">
    <title>Re: 4.9 library ABI transition (was: string/list ABI changes)</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26018</link>
    <description>&lt;pre&gt;

Hi

Jason Merrill &amp;lt;jason&amp;lt; at &amp;gt;redhat.com&amp;gt; ha scritto:


I understand, but frankly I don't feel like I understand the ABI strategy well enough. I'd rather prefer if say Benjamin could get the ball rolling with your help. Then I will be able to help for the rest of the work. For instance if you could show me in practice how you promote ext/vstring to basic_ string then I can certainly do the rest.

Paolo


&lt;/pre&gt;</description>
    <dc:creator>Paolo Carlini</dc:creator>
    <dc:date>2013-05-23T17:15:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26017">
    <title>Re: [google gcc-4_7,gcc-4_8,integration] Add bounds checks to vector&lt;bool&gt;</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26017</link>
    <description>&lt;pre&gt;

FWIW, we keep this under a separate macro so we can turn it on or off
independent of other build options.

Our current code looks like this:

#if !defined(__google_stl_debug_vector)
# if !defined(NDEBUG)
#  define __google_stl_debug_vector 1
# endif
#endif


Keying off NDEBUG rather than __OPTIMIZE__ seems like a more
consistent approach -- if you want assert()s, then you probably also
want these checks.

&lt;/pre&gt;</description>
    <dc:creator>Paul Pluzhnikov</dc:creator>
    <dc:date>2013-05-23T17:13:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26016">
    <title>4.9 library ABI transition (was: string/list ABI changes)</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26016</link>
    <description>&lt;pre&gt;Paolo, are you planning to work on this stuff?  I'd really like to get 
this going ASAP so that it has time to mature before 4.9.

Is there a list of all the classes you want to change?

Jason


&lt;/pre&gt;</description>
    <dc:creator>Jason Merrill</dc:creator>
    <dc:date>2013-05-23T17:00:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26014">
    <title>Re: [google gcc-4_7,gcc-4_8,integration] Add bounds checks to vector&lt;bool&gt;</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26014</link>
    <description>&lt;pre&gt;
I was wondering the other day whether we should put these checks on
trunk and enable them automatically when !defined(__OPTIMIZE__)

Now that we have -Og you could use that to disable the checks without
sacrificing debuggability.

&lt;/pre&gt;</description>
    <dc:creator>Jonathan Wakely</dc:creator>
    <dc:date>2013-05-23T16:14:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26009">
    <title>Re: [patch] Default to --enable-libstdcxx-time=auto</title>
    <link>http://permalink.gmane.org/gmane.comp.gcc.libstdc++.devel/26009</link>
    <description>&lt;pre&gt;
This looks great to me, thanks.


We should consider doing that yes, but it's less urgent.


I like that plan.

&lt;/pre&gt;</description>
    <dc:creator>Jonathan Wakely</dc:creator>
    <dc:date>2013-05-23T12:04:36</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.gcc.libstdc++.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.gcc.libstdc++.devel</link>
  </textinput>
</rdf:RDF>
