mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
- 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
19 lines
456 B
C++
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() );
|