| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/audio/gogglesmm/files/ |
Upload File : |
--- CMakeLists.txt.orig 2017-06-10 02:18:06 UTC +++ CMakeLists.txt @@ -57,6 +57,11 @@ if(HAS_CXX_OPTIMIZE_DEBUG AND CMAKE_BUILD_TYPE MATCHES add_compile_options(-Og) endif() +CHECK_CXX_COMPILER_FLAG(-Wno-inconsistent-missing-override HAS_CXX_NOOVERRIDE) +if(HAS_CXX_NOOVERRIDE AND NOT CMAKE_BUILD_TYPE MATCHES Debug) + add_compile_options(-Wno-inconsistent-missing-override) +endif() + # FIXME Doesn't work on all platforms. #CHECK_CXX_COMPILER_FLAG(-flto HAS_CXX_OPTIMIZE_LINKTIME) if(HAS_CXX_OPTIMIZE_LINKTIME AND NOT CMAKE_BUILD_TYPE MATCHES Debug) @@ -81,11 +86,13 @@ add_subdirectory(src) #------------------------------------------------------------------------------- # Extra Installation Files -install(PROGRAMS extra/import_banshee_stats.py - extra/import_gogglesmm12.py - extra/import_gogglesmm12_stats.py - DESTINATION - share/gogglesmm) +if(WITH_IMPORT) + install(PROGRAMS extra/import_banshee_stats.py + extra/import_gogglesmm12.py + extra/import_gogglesmm12_stats.py + DESTINATION + share/gogglesmm) +endif() install(FILES icons/gogglesmm_16.png DESTINATION share/icons/hicolor/16x16/apps RENAME gogglesmm.png) install(FILES extra/gogglesmm_22.png DESTINATION share/icons/hicolor/22x22/apps RENAME gogglesmm.png) @@ -96,7 +103,7 @@ install(FILES extra/gogglesmm_64.png DESTINATION share install(FILES extra/gogglesmm.svg DESTINATION share/icons/hicolor/scalable/apps RENAME gogglesmm.svg) install(FILES extra/gogglesmm.appdata.xml DESTINATION share/appdata) install(FILES extra/gogglesmm.desktop DESTINATION share/applications) -install(FILES extra/gogglesmm.1 DESTINATION share/man/man1) +install(FILES extra/gogglesmm.1 DESTINATION man/man1) # Install translations when native language support has been enabled if(WITH_NLS)