Revert "switch to new upstream"

This would mean rebuilding depending packages too and I don't think the
update is worth it.

This reverts commit b8f63c4263.
This commit is contained in:
David Tardon 2016-02-18 13:22:05 +01:00
commit 2674ee498d
5 changed files with 60 additions and 14 deletions

24
cppunit-msg.patch Normal file
View file

@ -0,0 +1,24 @@
--- cppunit-1.12.1/include/cppunit/Message.h 2010-10-08 14:02:26.514477964 +0200
+++ cppunit-1.12.1/include/cppunit/Message.h 2010-10-08 14:02:15.411948098 +0200
@@ -57,6 +57,8 @@ public:
const std::string &detail2,
const std::string &detail3 );
+ ~Message();
+
Message &operator =( const Message &other );
/*! \brief Returns the short description.
--- cppunit-1.12.1/src/cppunit/Message.cpp 2010-10-08 14:02:39.421768852 +0200
+++ cppunit-1.12.1/src/cppunit/Message.cpp 2010-10-08 14:02:54.066829633 +0200
@@ -47,6 +47,10 @@ Message::Message( const std::string &sho
addDetail( detail1, detail2, detail3 );
}
+Message::~Message()
+{
+}
+
Message &
Message::operator =( const Message &other )
{