Disable SSL when compiling for AmigaOS for now.

This commit is contained in:
Sebastian Bauer 2012-12-29 23:27:14 +01:00
parent e9bb730c36
commit c57c4af327

View File

@ -88,7 +88,9 @@ INCLUDE_DIRECTORIES(src include)
IF (WIN32 AND NOT MINGW) IF (WIN32 AND NOT MINGW)
ADD_DEFINITIONS(-DGIT_WINHTTP) ADD_DEFINITIONS(-DGIT_WINHTTP)
ELSE () ELSE ()
FIND_PACKAGE(OpenSSL) IF (NOT AMIGA)
FIND_PACKAGE(OpenSSL)
ENDIF ()
FILE(GLOB SRC_HTTP deps/http-parser/*.c) FILE(GLOB SRC_HTTP deps/http-parser/*.c)
INCLUDE_DIRECTORIES(deps/http-parser) INCLUDE_DIRECTORIES(deps/http-parser)
ENDIF() ENDIF()