external/cppunit/UnpackedTarball_cppunit.mk | 1 + external/cppunit/gcc9.patch.0 | 11 +++++++++++ 2 files changed, 12 insertions(+)
New commits: commit 46c9312c54c7292fb9d83388936e28f31f0c72c6 Author: Stephan Bergmann <[email protected]> AuthorDate: Thu Jul 26 10:10:59 2018 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Thu Jul 26 12:31:44 2018 +0200 external/cppunit: silence -Werror=deprecated-copy (GCC trunk towards GCC 9) Change-Id: I2daec11938361a6988741bd29e713a36a4c77414 Reviewed-on: https://gerrit.libreoffice.org/58042 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/external/cppunit/UnpackedTarball_cppunit.mk b/external/cppunit/UnpackedTarball_cppunit.mk index 28b251e4bf5b..3b945f29ab0f 100644 --- a/external/cppunit/UnpackedTarball_cppunit.mk +++ b/external/cppunit/UnpackedTarball_cppunit.mk @@ -17,6 +17,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,cppunit,\ external/cppunit/CPPUNIT_PLUGIN_EXPORT.patch.0 \ external/cppunit/enable-win32-debug.patch \ external/cppunit/rtti.patch.0 \ + external/cppunit/gcc9.patch.0 \ )) ifeq ($(DISABLE_DYNLOADING),TRUE) $(eval $(call gb_UnpackedTarball_add_patches,cppunit,\ diff --git a/external/cppunit/gcc9.patch.0 b/external/cppunit/gcc9.patch.0 new file mode 100644 index 000000000000..b05725ac09f2 --- /dev/null +++ b/external/cppunit/gcc9.patch.0 @@ -0,0 +1,11 @@ +--- include/cppunit/extensions/TestSuiteBuilderContext.h ++++ include/cppunit/extensions/TestSuiteBuilderContext.h +@@ -37,6 +37,8 @@ + TestSuiteBuilderContextBase( TestSuite &suite, + const TestNamer &namer, + TestFixtureFactory &factory ); ++ ++ TestSuiteBuilderContextBase(TestSuiteBuilderContextBase const &) = default; + + virtual ~TestSuiteBuilderContextBase(); + _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
