We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17087e2 commit a693664Copy full SHA for a693664
jdbc/CMakeLists.txt
@@ -480,6 +480,8 @@ set(IGNORED_PLUGINS
480
)
481
482
set(IGNORED_LIBS
483
+ libabsl abseil_dll # Since 8.4.0
484
+ libpolyglot # present on MacOS since 8.4.0
485
libmysql lber libprotobuf
486
ldap # note: this is needed only by server-side plugin
487
libcurl libmecab zlib
@@ -579,7 +581,10 @@ macro(bundle_libs to_bundle ignored)
579
581
# On windows, libs are in bin directory
580
582
583
if(WIN32)
- file(GLOB _bundled1 "${MYSQL_LIB_DIR}/../bin/*${CMAKE_SHARED_LIBRARY_SUFFIX}*")
584
+ file(GLOB _bundled1
585
+ "${MYSQL_LIB_DIR}/../bin/*${CMAKE_SHARED_LIBRARY_SUFFIX}*"
586
+ "${MYSQL_LIB_DIR}/../bin/sasl2/*${CMAKE_SHARED_LIBRARY_SUFFIX}*"
587
+ )
588
endif()
589
590
0 commit comments