/[gentoo-x86]/media-video/xvideoservicethief/files/xvideoservicethief-2.4.1-gcc47.patch
Gentoo

Contents of /media-video/xvideoservicethief/files/xvideoservicethief-2.4.1-gcc47.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (show annotations) (download)
Sun Aug 5 19:00:38 2012 UTC (9 months, 2 weeks ago) by hwoarang
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +9 -5 lines
Update gcc47 patch. Bug #430006

(Portage version: 2.1.11.9/cvs/Linux x86_64)

1 Index: work/src/qtsingleapplication/src/qtlocalpeer.cpp
2 ===================================================================
3 --- work.orig/src/qtsingleapplication/src/qtlocalpeer.cpp
4 +++ work/src/qtsingleapplication/src/qtlocalpeer.cpp
5 @@ -100,7 +100,11 @@ QtLocalPeer::QtLocalPeer(QObject* parent
6 socketName += QLatin1Char('-') + QString::number(sessionId, 16);
7 }
8 #else
9 +#if __GNUC__ >= 4 && __GNUC_MINOR__ <=6
10 socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
11 +#else
12 + socketName += QLatin1Char('-') + QString::number(QtLP_Private::getuid(), 16);
13 +#endif
14 #endif
15
16 server = new QLocalServer(this);

  ViewVC Help
Powered by ViewVC 1.1.13