From b4359e8bf97799f83dc1ca62744db7cfcc81bc87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Mon, 24 Jun 2013 19:50:32 +0200 Subject: RPM Packaging: rename directories --- .../tdebase/kdebase-3.5.13-fix_fqdn_in_title.patch | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 redhat/tdebase/kdebase-3.5.13-fix_fqdn_in_title.patch (limited to 'redhat/tdebase/kdebase-3.5.13-fix_fqdn_in_title.patch') diff --git a/redhat/tdebase/kdebase-3.5.13-fix_fqdn_in_title.patch b/redhat/tdebase/kdebase-3.5.13-fix_fqdn_in_title.patch new file mode 100644 index 000000000..74122ec46 --- /dev/null +++ b/redhat/tdebase/kdebase-3.5.13-fix_fqdn_in_title.patch @@ -0,0 +1,46 @@ +commit d409abdbef8dd8b72bb2f311fcaa7456bdc2404b +Author: Luboš Luňák +Date: Fri Mar 4 16:22:23 2011 +0100 + + do not show hostname in titlebar if it's FQDN of localhost + +diff --git a/kwin/utils.cpp b/kwin/utils.cpp +--- a/kwin/utils.cpp ++++ b/kwin/utils.cpp +@@ -18,6 +18,8 @@ + #include "utils.h" + + #include ++#include ++#include + + #ifndef KCMRULES + +@@ -323,6 +325,27 @@ bool isLocalMachine( const TQCString& host ) + if( host == hostnamebuf ) + return true; + } ++ else ++ { // e.g. LibreOffice likes to give FQDN, even if gethostname() doesn't include domain ++ struct addrinfo hints, *res, *addr; ++ bool is_local = false; ++ ++ memset (&hints, 0, sizeof (hints)); ++ hints.ai_family = PF_UNSPEC; ++ hints.ai_socktype = SOCK_STREAM; ++ hints.ai_flags |= AI_CANONNAME; ++ ++ if( getaddrinfo( host, NULL, &hints, &res ) != 0) ++ return false; ++ for(addr = res; !is_local && addr; addr = addr->ai_next) ++ { ++ if( res->ai_canonname && ++ host == TQCString( res->ai_canonname )) ++ is_local = true; ++ } ++ freeaddrinfo(res); ++ return is_local; ++ } + } + return false; + } -- cgit v1.2.1