Hi everyone,

We hit a bug in stunnel-5.05 and it continues in 5.06. The problem comes from systemd which moved sd_listen_fds() form libsystemd-daemon.so to libsystemd.so. However, stunnel's configure.ac still has

AC_SEARCH_LIBS([sd_listen_fds], [systemd-daemon])

For backwards compatibility, this should probably be

AC_SEARCH_LIBS([sd_listen_fds], [systemd], [], [
    AC_SEARCH_LIBS([sd_listen_fds], [systemd-daemon])
])

or similar.  Please refer to our downstream bug:

https://bugs.gentoo.org/show_bug.cgi?id=525234'

Thanks.

--
Anthony G. Basile, Ph. D.
Chair of Information Technology
D'Youville College
Buffalo, NY 14201
(716) 829-8197
_______________________________________________
stunnel-users mailing list
[email protected]
https://www.stunnel.org/cgi-bin/mailman/listinfo/stunnel-users

Reply via email to