Michael Biebl 5113d43bfb ommongodb: fix compilation of SSL/TLS support
The change in #2950 introduced

AC_CHECK_FUNCS(mongoc_client_set_ssl_opts,,)

This check always returns "no", so SSL/TLS support was always disabled
even if mongo-c-driver had been built with SSL/TLS support. So while it
fixed the build failure it meant that this specific code in ommongodb
was no longer enabled.

Instead, use the define that is provided by mongo-config.h:

/*
 * MONGOC_ENABLE_SSL is set from configure to determine if we are
 * compiled with any SSL support.
 */
2025-09-10 15:35:09 +02:00
..
2025-09-05 09:35:26 +02:00
2025-08-23 08:43:19 +02:00