From: Marc Fournier Date: Tue, 14 Apr 2015 06:35:28 +0000 (+0200) Subject: notify_email: avoid linking against libdl X-Git-Tag: collectd-5.5.0~42 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=4342c79ff0d47f561a28e7100c25b205803fa09f notify_email: avoid linking against libdl This flag seems to have been accidentally added in 451d75bae1 and prevents building the plugin on platforms which don't have GNU libc. --- diff --git a/src/Makefile.am b/src/Makefile.am index 19907007..d679025b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -697,7 +697,7 @@ if BUILD_PLUGIN_NOTIFY_EMAIL pkglib_LTLIBRARIES += notify_email.la notify_email_la_SOURCES = notify_email.c notify_email_la_LDFLAGS = $(PLUGIN_LDFLAGS) -notify_email_la_LIBADD = -lesmtp -lssl -lcrypto -lpthread -ldl +notify_email_la_LIBADD = -lesmtp -lssl -lcrypto -lpthread endif if BUILD_PLUGIN_NTPD