File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ set(ENABLE_AWS_S3_DEFAULT OFF)
2
2
set (ENABLE_AWS_MSK_IAM_DEFAULT OFF ) # proton: added
3
3
4
4
if (ENABLE_LIBRARIES AND (OS_LINUX OR OS_DARWIN ) AND TARGET OpenSSL::Crypto )
5
- set (ENABLE_AWS_S3_DEFAULT ON )
5
+ set (ENABLE_AWS_S3_DEFAULT OFF ) # proton: added https://github.com/timeplus-io/proton/issues/918
6
6
set (ENABLE_AWS_MSK_IAM_DEFAULT ON ) # proton: added
7
7
endif ()
8
8
@@ -17,6 +17,11 @@ if(ENABLE_AWS_S3 OR ENABLE_AWS_MSK_IAM) # proton: updated
17
17
endif ()
18
18
endif ()
19
19
20
+ if (NOT ENABLE_AWS_S3 )
21
+ message (STATUS "Not using AWS S3" )
22
+ return ()
23
+ endif ()
24
+
20
25
if (NOT (ENABLE_AWS_S3 OR ENABLE_AWS_MSK_IAM )) # proton: updated
21
26
message (STATUS "Not using AWS SDK" ) # proton: updated
22
27
return ()
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ if (TARGET ch_contrib::datasketches)
62
62
set (USE_DATASKETCHES 1 )
63
63
endif ()
64
64
if (TARGET ch_contrib::aws_s3 )
65
- set (USE_AWS_S3 0 )
65
+ set (USE_AWS_S3 1 )
66
66
endif ()
67
67
# proton: starts
68
68
if (TARGET ch_contrib::aws_msk_iam )
You can’t perform that action at this time.
0 commit comments