summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/2013-April/024305.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-dev/2013-April/024305.html')
-rw-r--r--zarb-ml/mageia-dev/2013-April/024305.html99
1 files changed, 99 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/2013-April/024305.html b/zarb-ml/mageia-dev/2013-April/024305.html
new file mode 100644
index 000000000..5798119b7
--- /dev/null
+++ b/zarb-ml/mageia-dev/2013-April/024305.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-dev] Update to boost-1.53 ? (libyui fixing)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Update%20to%20boost-1.53%20%3F%20%28libyui%20fixing%29&In-Reply-To=%3C51630876.1040709%40zen.co.uk%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="024293.html">
+ <LINK REL="Next" HREF="024123.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-dev] Update to boost-1.53 ? (libyui fixing)</H1>
+ <B>Barry Jackson</B>
+ <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Update%20to%20boost-1.53%20%3F%20%28libyui%20fixing%29&In-Reply-To=%3C51630876.1040709%40zen.co.uk%3E"
+ TITLE="[Mageia-dev] Update to boost-1.53 ? (libyui fixing)">zen25000 at zen.co.uk
+ </A><BR>
+ <I>Mon Apr 8 20:12:06 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="024293.html">[Mageia-dev] Update to boost-1.53 ? (libyui fixing)
+</A></li>
+ <LI>Next message: <A HREF="024123.html">[Mageia-dev] Update to boost-1.53 ?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#24305">[ date ]</a>
+ <a href="thread.html#24305">[ thread ]</a>
+ <a href="subject.html#24305">[ subject ]</a>
+ <a href="author.html#24305">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 07/04/13 16:57, Angelo Naselli wrote:
+
+&gt;<i>
+</I>&gt;<i> I haven't committed anything at the moment, so you can take this as a
+</I>&gt;<i> good patch and decide later if going on or not.
+</I>&gt;<i>
+</I>&gt;<i> Angelo
+</I>&gt;<i>
+</I>Hi
+Not had much time to check over weekend.
+
+Your last patch fails to apply for some reason, but I will look again -
+may be something silly.
+
+Before I saw your last patch I made one from the upstream git revision,
+and this applies and builds OK. It is attached.
+
+Barry
+-------------- next part --------------
+diff -ur libyui-2.42.4-623354b_orig/src/ImplPtr.h libyui-2.42.4-623354b/src/ImplPtr.h
+--- libyui-2.42.4-623354b_orig/src/ImplPtr.h 2013-01-07 21:19:01.000000000 +0000
++++ libyui-2.42.4-623354b/src/ImplPtr.h 2013-04-08 17:51:10.741171954 +0100
+@@ -41,7 +41,9 @@
+ template&lt;class _Impl&gt;
+ class ImplPtr : private boost::noncopyable
+ {
++#if defined( BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS ) || defined( BOOST_NO_CXX11_NULLPTR )
+ typedef typename boost::scoped_ptr&lt;_Impl&gt;::unspecified_bool_type unspecified_bool_type;
++#endif
+
+ public:
+ typedef _Impl element_type;
+@@ -55,7 +57,11 @@
+ void swap( ImplPtr rhs ) { _impl.swap( rhs._impl ); }
+
+ public:
++#if defined( BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS ) || defined( BOOST_NO_CXX11_NULLPTR )
+ operator unspecified_bool_type() const { return _impl; }
++#else
++ explicit operator bool () const { return _impl.get() != 0; }
++#endif
+
+ const _Impl &amp; operator*() const { return *_impl; }
+ const _Impl * operator-&gt;() const { return _impl.get(); }
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="024293.html">[Mageia-dev] Update to boost-1.53 ? (libyui fixing)
+</A></li>
+ <LI>Next message: <A HREF="024123.html">[Mageia-dev] Update to boost-1.53 ?
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#24305">[ date ]</a>
+ <a href="thread.html#24305">[ thread ]</a>
+ <a href="subject.html#24305">[ subject ]</a>
+ <a href="author.html#24305">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
+mailing list</a><br>
+</body></html>