2021-12-06 16:07:01 +00:00
|
|
|
{ lib, kdeIntegration, commonsLogging, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
attrs:
|
|
|
|
{
|
|
|
|
postConfigure = attrs.postConfigure + ''
|
2021-02-13 14:23:35 +00:00
|
|
|
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx'
|
2022-10-21 18:38:19 +00:00
|
|
|
sed -e '/CPPUNIT_ASSERT(!bRTL);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(0, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(4, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(11, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(18, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(3, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(9, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(17, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
|
|
|
sed -e '/CPPUNIT_ASSERT_EQUAL(22, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx'
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
2022-10-21 18:38:19 +00:00
|
|
|
configureFlags = attrs.configureFlags;
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
patches = attrs.patches or [];
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|