From 3bc0ba80003c4a25370509fb11ba9ab320201b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 23 Nov 2015 00:57:52 +0100 Subject: [PATCH] libreoffice-native: saxparser outputs calling parameters for debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- ...r-output-calling-parametrs-for-debug.patch | 29 +++++++++++++++++++ .../libreoffice/libreoffice-native.bb | 4 +++ 2 files changed, 33 insertions(+) create mode 100644 recipes-libreoffice/libreoffice/files/0006-saxparser-output-calling-parametrs-for-debug.patch diff --git a/recipes-libreoffice/libreoffice/files/0006-saxparser-output-calling-parametrs-for-debug.patch b/recipes-libreoffice/libreoffice/files/0006-saxparser-output-calling-parametrs-for-debug.patch new file mode 100644 index 0000000..888997a --- /dev/null +++ b/recipes-libreoffice/libreoffice/files/0006-saxparser-output-calling-parametrs-for-debug.patch @@ -0,0 +1,29 @@ +From c3baa66501375419563ba6d44685df347ae09a8a Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= +Date: Sun, 22 Nov 2015 21:44:04 +0100 +Subject: [PATCH] saxparser: output calling parametrs for debug +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Andreas Müller +--- + i18npool/source/localedata/saxparser.cxx | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/i18npool/source/localedata/saxparser.cxx b/i18npool/source/localedata/saxparser.cxx +index 1674478..7bc89a1 100644 +--- a/i18npool/source/localedata/saxparser.cxx ++++ b/i18npool/source/localedata/saxparser.cxx +@@ -325,6 +325,8 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) + exit( 1 ); + } + ++ printf( "called: %s %s %s %s\n", argv[0], argv[1], argv[2], argv[3] ); ++ + Reference< XComponentContext > xContext( + defaultBootstrap_InitialComponentContext()); + +-- +2.1.0 + diff --git a/recipes-libreoffice/libreoffice/libreoffice-native.bb b/recipes-libreoffice/libreoffice/libreoffice-native.bb index 3cbcef7..526273a 100644 --- a/recipes-libreoffice/libreoffice/libreoffice-native.bb +++ b/recipes-libreoffice/libreoffice/libreoffice-native.bb @@ -9,6 +9,10 @@ DEPENDS += " \ expat-native \ " +SRC_URI += " \ + file://0006-saxparser-output-calling-parametrs-for-debug.patch \ +" + EXTRA_OECONF += " \ --enable-python=system \ --without-x \