ports/multimedia/umplayer/files/patch-src_umplayer.cpp
Philip M. Gollucci c76ffd1bea multimedia/umplayer: cleanup
- Add LICENSE.
- Add USES=desktop-file-utils.
- Replace linguist_build with linguisttools_build.
- Strip binary.
- Regenerate patch with 'make makepatch'.

PR:                  201474
Submitted by:        s3erios@gmail.com
2015-07-15 20:58:57 +00:00

19 lines
456 B
C++

--- src/umplayer.cpp.orig 2011-09-13 08:33:08 UTC
+++ src/umplayer.cpp
@@ -447,13 +447,13 @@ void UMPlayer::showInfo() {
.arg(umplayerVersion())
#ifdef Q_OS_LINUX
.arg("Linux")
-#else
-#ifdef Q_OS_WIN
+#elif defined(Q_OS_FREEBSD)
+ .arg("FreeBSD")
+#elif defined(Q_OS_WIN)
.arg("Windows ("+win_ver+")")
#else
.arg("Other OS")
#endif
-#endif
;
printf("%s\n", s.toLocal8Bit().data() );