From 4d8bff51300c4a84332e54035bf3389949ed034d Mon Sep 17 00:00:00 2001 From: Jeroen Dekkers Date: Mon, 11 Mar 2013 19:37:45 +0100 Subject: [PATCH] Link libSOGo with libdl on systems with glibc --- SoObjects/SOGo/GNUmakefile.preamble | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SoObjects/SOGo/GNUmakefile.preamble b/SoObjects/SOGo/GNUmakefile.preamble index 925df35a0..baa7f5b94 100644 --- a/SoObjects/SOGo/GNUmakefile.preamble +++ b/SoObjects/SOGo/GNUmakefile.preamble @@ -49,6 +49,10 @@ else SOGo_LIBRARIES_DEPEND_UPON += -lcrypt endif +ifeq ($(findstring gnu, $(GNUSTEP_HOST_OS)), gnu) +SOGo_LIBRARIES_DEPEND_UPON += -ldl +endif + ADDITIONAL_TOOL_LIBS += \ -L$(GNUSTEP_OBJ_DIR)/ \ -lSOGo \