File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ include_directories(
19
19
../duckdb/third_party/thrift
20
20
../duckdb/third_party/snappy
21
21
../duckdb/third_party/zstd/include
22
- ../duckdb/third_party/mbedtls/include
22
+ # ../duckdb/third_party/mbedtls/include
23
23
../duckdb/third_party/brotli/include )
24
24
set (EXTENSION_SOURCES src/chsql_extension.cpp src/duck_flock.cpp src/chsql_system.cpp src/parquet_types.cpp )
25
25
# Exclude mbedtls/version from the build
@@ -30,8 +30,8 @@ set_source_files_properties(
30
30
build_static_extension (${TARGET_NAME} ${EXTENSION_SOURCES} )
31
31
build_loadable_extension (${TARGET_NAME} " " ${EXTENSION_SOURCES} )
32
32
# Link OpenSSL in both the static library as the loadable extension
33
- target_link_libraries (${EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto )
34
- target_link_libraries (${LOADABLE_EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto )
33
+ target_link_libraries (${EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto duckdb_mbedtls )
34
+ target_link_libraries (${LOADABLE_EXTENSION_NAME} OpenSSL::SSL OpenSSL::Crypto duckdb_mbedtls )
35
35
install (
36
36
TARGETS ${EXTENSION_NAME}
37
37
EXPORT "${DUCKDB_EXPORT_SET} "
You can’t perform that action at this time.
0 commit comments