File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ if(BUNDLE_DEPENDENCIES)
399
399
get_filename_component (lib_name ${lib} NAME_WE )
400
400
401
401
# ssl|crypto are bundled on cdk/cmake/DepFindSSL.cmake
402
- if (NOT lib_name MATCHES "mysql|protobuf|lber|ldap_r|ssl|crypto " )
402
+ if (NOT lib_name MATCHES "mysql|libprotobuf|liblber|libldap_r|libssl|libcrypto " )
403
403
404
404
message ("found bundled libs: ${lib} " )
405
405
@@ -410,6 +410,17 @@ if(BUNDLE_DEPENDENCIES)
410
410
411
411
endif ()
412
412
413
+ # Also bundle modules required by the SASL library if it is bundled
414
+
415
+ if (lib_name MATCHES "libsasl" )
416
+
417
+ install (DIRECTORY "${MYSQL_LIB_DIR} /private/sasl2"
418
+ DESTINATION "${INSTALL_LIB_DIR} /private"
419
+ COMPONENT JDBCDll
420
+ )
421
+
422
+ endif ()
423
+
413
424
endforeach ()
414
425
415
426
file (GLOB _bundled "${MYSQL_PLUGIN_DIR} /*${CMAKE_SHARED_LIBRARY_SUFFIX} *" )
You can’t perform that action at this time.
0 commit comments