diff options
author | Jonathan Callen <jcallen@gentoo.org> | 2009-11-09 10:08:12 +0000 |
---|---|---|
committer | Jonathan Callen <jcallen@gentoo.org> | 2009-11-09 10:08:12 +0000 |
commit | 9f28d4c19aa23976d69c8cbb7b947296b31eb111 (patch) | |
tree | bcb4423cfd2dfc718c6fb3d91bb4f87a4ba24ce6 /kde-base/kdelibs | |
parent | Unused patch. (diff) | |
download | historical-9f28d4c19aa23976d69c8cbb7b947296b31eb111.tar.gz historical-9f28d4c19aa23976d69c8cbb7b947296b31eb111.tar.bz2 historical-9f28d4c19aa23976d69c8cbb7b947296b31eb111.zip |
Drop unneeded patch
Package-Manager: portage--svn/cvs/Linux i686
Diffstat (limited to 'kde-base/kdelibs')
-rw-r--r-- | kde-base/kdelibs/ChangeLog | 6 | ||||
-rw-r--r-- | kde-base/kdelibs/files/dist/09_disable_debug_messages_if_not_explicitly_enabled.patch | 61 |
2 files changed, 5 insertions, 62 deletions
diff --git a/kde-base/kdelibs/ChangeLog b/kde-base/kdelibs/ChangeLog index 0140c61b760f..7401b00b16bf 100644 --- a/kde-base/kdelibs/ChangeLog +++ b/kde-base/kdelibs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/kdelibs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.639 2009/11/09 09:48:17 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/ChangeLog,v 1.640 2009/11/09 10:08:12 abcd Exp $ + + 09 Nov 2009; Jonathan Callen <abcd@gentoo.org> + -files/dist/09_disable_debug_messages_if_not_explicitly_enabled.patch: + Drop unneeded patch 09 Nov 2009; Jonathan Callen <abcd@gentoo.org> -files/4.2.4-CVE-2009-1687.patch, diff --git a/kde-base/kdelibs/files/dist/09_disable_debug_messages_if_not_explicitly_enabled.patch b/kde-base/kdelibs/files/dist/09_disable_debug_messages_if_not_explicitly_enabled.patch deleted file mode 100644 index 171cb1849c96..000000000000 --- a/kde-base/kdelibs/files/dist/09_disable_debug_messages_if_not_explicitly_enabled.patch +++ /dev/null @@ -1,61 +0,0 @@ - -We build with debugging symbols enabled, that's why we get a lot of debugging -messages on the konsole. This patch disables these messages. Kdebugdialog -can be used to enable them. -See also 04_disable_debug_by_default.diff in kdebase-runtime. - -In KDE 4.3 trunk this has been committed as r916186. ---- a/kdecore/kdebugrc -+++ b/kdecore/kdebugrc -@@ -82,7 +82,7 @@ InfoOutput=4 - - # KMail - [5006] --InfoOutput=2 -+InfoOutput=4 - - # KitchenSync (Syncing Algorithm) - [5250] ---- a/kdecore/io/kdebug.cpp -+++ b/kdecore/io/kdebug.cpp -@@ -181,6 +181,11 @@ struct KDebugPrivate - QtOutput = 2, - SyslogOutput = 3, - NoOutput = 4, -+#ifdef QT_NO_DEBUG -+ DefaultOutput = NoOutput, -+#else -+ DefaultOutput = QtOutput, -+#endif - Unknown = 5 - }; - -@@ -313,7 +318,7 @@ struct KDebugPrivate - } - - KConfigGroup cg(config, QString::number(area)); -- int mode = cg.readEntry(key, 2); -+ int mode = cg.readEntry(key, int(DefaultOutput)); - return OutputMode(mode); - } - ---- a/kdecore/io/kdebug.h -+++ b/kdecore/io/kdebug.h -@@ -31,12 +31,13 @@ - * @{ - * KDE debug message streams let you and the user control just how many debug - * messages you see. Debug message printing is controlled by (un)defining -- * QT_NO_DEBUG when compiling your source. If QT_NO_DEBUG is defined then no debug -- * messages are printed. -+ * QT_NO_DEBUG when compiling your source. If QT_NO_DEBUG is defined then debug -+ * messages are not printed by default but can still be enabled by runtime -+ * configuration, e.g. via kdebugdialog or by editing kdebugrc. - */ - - #if !defined(KDE_NO_DEBUG_OUTPUT) --# if defined(QT_NO_DEBUG) || defined(QT_NO_DEBUG_OUTPUT) || defined(QT_NO_DEBUG_STREAM) -+# if defined(QT_NO_DEBUG_OUTPUT) || defined(QT_NO_DEBUG_STREAM) - # define KDE_NO_DEBUG_OUTPUT - # endif - #endif - |