diff --git a/0001-fix-compile-for-change-to-boost-1.53.0-declaring-sma.patch b/0001-fix-compile-for-change-to-boost-1.53.0-declaring-sma.patch new file mode 100644 index 0000000..cbb649e --- /dev/null +++ b/0001-fix-compile-for-change-to-boost-1.53.0-declaring-sma.patch @@ -0,0 +1,187 @@ +From d4bab97023e3569571a92551040574b20aceca7c Mon Sep 17 00:00:00 2001 +From: Mark Wright +Date: Sun, 10 Feb 2013 02:04:02 +1100 +Subject: [PATCH] fix compile for change to boost 1.53.0 declaring smart + pointer operator bool as explicity for C++11 compilers + +Change-Id: If2c3ad68b2ffea645a9f2035cd802553edc0ee79 +Reviewed-on: https://gerrit.libreoffice.org/2064 +Tested-by: LibreOffice gerrit bot +Reviewed-by: Norbert Thiebaud +--- + comphelper/inc/comphelper/scoped_disposing_ptr.hxx | 2 +- + sc/source/filter/excel/xechart.cxx | 2 +- + sc/source/filter/excel/xehelper.cxx | 2 +- + sc/source/filter/excel/xichart.cxx | 2 +- + sc/source/filter/inc/xichart.hxx | 4 ++-- + slideshow/source/engine/animatedsprite.cxx | 2 +- + slideshow/source/engine/shapes/viewshape.cxx | 2 +- + slideshow/source/engine/shapesubset.cxx | 2 +- + slideshow/source/engine/slide/slideanimations.cxx | 2 +- + slideshow/source/inc/shapeattributelayer.hxx | 2 +- + slideshow/source/inc/shapeattributelayerholder.hxx | 2 +- + sw/source/core/inc/bookmrk.hxx | 2 +- + 12 files changed, 13 insertions(+), 13 deletions(-) + +diff --git a/comphelper/inc/comphelper/scoped_disposing_ptr.hxx b/comphelper/inc/comphelper/scoped_disposing_ptr.hxx +index 9b4fe1b..6c34074 100644 +--- a/comphelper/inc/comphelper/scoped_disposing_ptr.hxx ++++ b/comphelper/inc/comphelper/scoped_disposing_ptr.hxx +@@ -78,7 +78,7 @@ public: + + operator bool () const + { +- return m_aItem; ++ return static_cast< bool >(m_aItem); + } + + virtual ~scoped_disposing_ptr() +diff --git a/sc/source/filter/excel/xechart.cxx b/sc/source/filter/excel/xechart.cxx +index fd99e8b..75a2eb2 100644 +--- a/sc/source/filter/excel/xechart.cxx ++++ b/sc/source/filter/excel/xechart.cxx +@@ -683,7 +683,7 @@ void XclExpChEscherFormat::Convert( const ScfPropertySet& rPropSet, XclChObjectT + + bool XclExpChEscherFormat::IsValid() const + { +- return maData.mxEscherSet; ++ return static_cast< bool >(maData.mxEscherSet); + } + + void XclExpChEscherFormat::Save( XclExpStream& rStrm ) +diff --git a/sc/source/filter/excel/xehelper.cxx b/sc/source/filter/excel/xehelper.cxx +index c493560..81e9ac2 100644 +--- a/sc/source/filter/excel/xehelper.cxx ++++ b/sc/source/filter/excel/xehelper.cxx +@@ -303,7 +303,7 @@ rtl::OUString XclExpHyperlinkHelper::ProcessUrlField( const SvxURLField& rUrlFie + if( GetBiff() == EXC_BIFF8 ) // no HLINK records in BIFF2-BIFF7 + { + // there was/is already a HLINK record +- mbMultipleUrls = mxLinkRec; ++ mbMultipleUrls = static_cast< bool >(mxLinkRec); + + mxLinkRec.reset( new XclExpHyperlink( GetRoot(), rUrlField, maScPos ) ); + +diff --git a/sc/source/filter/excel/xichart.cxx b/sc/source/filter/excel/xichart.cxx +index 63c9c43..f2321bf 100644 +--- a/sc/source/filter/excel/xichart.cxx ++++ b/sc/source/filter/excel/xichart.cxx +@@ -2690,7 +2690,7 @@ void XclImpChTypeGroup::Finalize() + maType.Finalize( bStockChart ); + + // extended type info +- maTypeInfo.Set( maType.GetTypeInfo(), mxChart3d, false ); ++ maTypeInfo.Set( maType.GetTypeInfo(), static_cast< bool >(mxChart3d), false ); + + // reverse series order for some unstacked 2D chart types + if( maTypeInfo.mbReverseSeries && !Is3dChart() && !maType.IsStacked() && !maType.IsPercent() ) +diff --git a/sc/source/filter/inc/xichart.hxx b/sc/source/filter/inc/xichart.hxx +index 57538f0..7c44412 100644 +--- a/sc/source/filter/inc/xichart.hxx ++++ b/sc/source/filter/inc/xichart.hxx +@@ -1230,9 +1230,9 @@ public: + /** Returns true, if the axis contains caption labels. */ + inline bool HasLabels() const { return !mxTick || mxTick->HasLabels(); } + /** Returns true, if the axis shows its major grid lines. */ +- inline bool HasMajorGrid() const { return mxMajorGrid; } ++ inline bool HasMajorGrid() const { return static_cast< bool >(mxMajorGrid); } + /** Returns true, if the axis shows its minor grid lines. */ +- inline bool HasMinorGrid() const { return mxMinorGrid; } ++ inline bool HasMinorGrid() const { return static_cast< bool >(mxMinorGrid); } + + /** Creates an API axis object. */ + XAxisRef CreateAxis( const XclImpChTypeGroup& rTypeGroup, const XclImpChAxis* pCrossingAxis ) const; +diff --git a/slideshow/source/engine/animatedsprite.cxx b/slideshow/source/engine/animatedsprite.cxx +index e63d600..5d421c2 100644 +--- a/slideshow/source/engine/animatedsprite.cxx ++++ b/slideshow/source/engine/animatedsprite.cxx +@@ -151,7 +151,7 @@ namespace slideshow + } + } + +- return mpSprite; ++ return static_cast< bool >(mpSprite); + } + + void AnimatedSprite::setPixelOffset( const ::basegfx::B2DSize& rPixelOffset ) +diff --git a/slideshow/source/engine/shapes/viewshape.cxx b/slideshow/source/engine/shapes/viewshape.cxx +index 20c73de..621535f 100644 +--- a/slideshow/source/engine/shapes/viewshape.cxx ++++ b/slideshow/source/engine/shapes/viewshape.cxx +@@ -178,7 +178,7 @@ namespace slideshow + } + } + +- return io_rCacheEntry.mpRenderer; ++ return static_cast< bool >(io_rCacheEntry.mpRenderer); + } + + bool ViewShape::draw( const ::cppcanvas::CanvasSharedPtr& rDestinationCanvas, +diff --git a/slideshow/source/engine/shapesubset.cxx b/slideshow/source/engine/shapesubset.cxx +index c5636cc..da28159 100644 +--- a/slideshow/source/engine/shapesubset.cxx ++++ b/slideshow/source/engine/shapesubset.cxx +@@ -104,7 +104,7 @@ namespace slideshow + maTreeNode ); + } + +- return mpSubsetShape; ++ return static_cast< bool >(mpSubsetShape); + } + + void ShapeSubset::disableSubsetShape() +diff --git a/slideshow/source/engine/slide/slideanimations.cxx b/slideshow/source/engine/slide/slideanimations.cxx +index 5f5e9f5..7d4c788 100644 +--- a/slideshow/source/engine/slide/slideanimations.cxx ++++ b/slideshow/source/engine/slide/slideanimations.cxx +@@ -74,7 +74,7 @@ namespace slideshow + + SHOW_NODE_TREE( mpRootNode ); + +- return mpRootNode; ++ return static_cast< bool >(mpRootNode); + } + + bool SlideAnimations::isAnimated() const +diff --git a/slideshow/source/inc/shapeattributelayer.hxx b/slideshow/source/inc/shapeattributelayer.hxx +index 88405f8..d725255 100644 +--- a/slideshow/source/inc/shapeattributelayer.hxx ++++ b/slideshow/source/inc/shapeattributelayer.hxx +@@ -467,7 +467,7 @@ namespace slideshow + // ShapeAttributeLayer(const ShapeAttributeLayer&); + // ShapeAttributeLayer& operator=( const ShapeAttributeLayer& ); + +- bool haveChild() const { return mpChild; } ++ bool haveChild() const { return static_cast< bool >(mpChild); } + void updateStateIds(); + + template< typename T > T calcValue( const T& rCurrValue, +diff --git a/slideshow/source/inc/shapeattributelayerholder.hxx b/slideshow/source/inc/shapeattributelayerholder.hxx +index e53be46..22ce4f3 100644 +--- a/slideshow/source/inc/shapeattributelayerholder.hxx ++++ b/slideshow/source/inc/shapeattributelayerholder.hxx +@@ -83,7 +83,7 @@ namespace slideshow + if( mpShape ) + mpAttributeLayer = mpShape->createAttributeLayer(); + +- return mpAttributeLayer; ++ return static_cast< bool >(mpAttributeLayer); + } + + ShapeAttributeLayerSharedPtr get() const +diff --git a/sw/source/core/inc/bookmrk.hxx b/sw/source/core/inc/bookmrk.hxx +index 6937a19..bab92bb 100644 +--- a/sw/source/core/inc/bookmrk.hxx ++++ b/sw/source/core/inc/bookmrk.hxx +@@ -75,7 +75,7 @@ namespace sw { + + virtual bool IsCoveringPosition(const SwPosition& rPos) const; + virtual bool IsExpanded() const +- { return m_pPos2; } ++ { return static_cast< bool >(m_pPos2); } + + virtual void SetName(const ::rtl::OUString& rName) + { m_aName = rName; } +-- +1.8.1.2 + diff --git a/libreoffice.spec b/libreoffice.spec index 763bc38..f3eaa15 100644 --- a/libreoffice.spec +++ b/libreoffice.spec @@ -254,6 +254,7 @@ Patch20: 0001-Resolves-fdo-60132-Error-reading-file-after-insertin.patch Patch21: 0001-no-g_list_free_full-in-RHEL-6-glib.patch Patch22: 0001-Resolves-rhbz-910176-cannot-select-directory-with-gn.patch Patch23: 0001-Work-around-problem-with-boost-shared_array-NULL-cto.patch +Patch24: 0001-fix-compile-for-change-to-boost-1.53.0-declaring-sma.patch %define instdir %{_libdir} %define baseinstdir %{instdir}/libreoffice @@ -997,6 +998,7 @@ mv -f redhat.soc extras/source/palettes/standard.soc %patch21 -p1 -b .no-g_list_free_full-in-RHEL-6-glib.patch %patch22 -p1 -b .rhbz-910176-cannot-select-directory-with-gn.patch %patch23 -p1 -b .Work-around-problem-with-boost-shared_array-NULL-cto.patch +%patch24 -p1 -b .fix-compile-for-change-to-boost-1.53.0-declaring-sma.patch # TODO: check this # these are horribly incomplete--empty translations and copied english