Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c57c4af

Browse files
committed
Disable SSL when compiling for AmigaOS for now.
1 parent e9bb730 commit c57c4af

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ INCLUDE_DIRECTORIES(src include)
8888
IF (WIN32 AND NOT MINGW)
8989
ADD_DEFINITIONS(-DGIT_WINHTTP)
9090
ELSE ()
91-
FIND_PACKAGE(OpenSSL)
91+
IF (NOT AMIGA)
92+
FIND_PACKAGE(OpenSSL)
93+
ENDIF ()
9294
FILE(GLOB SRC_HTTP deps/http-parser/*.c)
9395
INCLUDE_DIRECTORIES(deps/http-parser)
9496
ENDIF()

0 commit comments

Comments
 (0)