Index: quassel-0.12.2/CMakeLists.txt =================================================================== --- quassel-0.12.2.orig/CMakeLists.txt +++ quassel-0.12.2/CMakeLists.txt @@ -479,20 +479,7 @@ if (NOT ZLIB_FOUND) endif() endif() -# Check for SSL support in Qt -# As there's no easy way to get Qt's configuration in particular for Qt5, let's just compile -# a small test program checking the defines. This works for both Qt4 and Qt5. -cmake_push_check_state(RESET) -set(CMAKE_REQUIRED_INCLUDES ${QT_INCLUDES} ${Qt5Core_INCLUDE_DIRS}) -check_cxx_source_compiles(" - #include \"qglobal.h\" - #if defined QT_NO_OPENSSL || defined QT_NO_SSL - # error \"No SSL support\" - #endif - int main() {}" - HAVE_SSL) -cmake_pop_check_state() - +SET(HAVE_SSL TRUE) if (HAVE_SSL) add_definitions(-DHAVE_SSL) endif()