From 06419a4edfcaf4306f85bec81a7460058cff923b Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 16 Jun 2011 15:35:13 +0000 Subject: [PATCH] Fix for bug #1035 Monotone-Parent: 869378c97b2bf3386ab9d61f8e107135f0dc0529 Monotone-Revision: 698461b7043455867e02dfbd291566ea991bf8a5 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2011-06-16T15:35:13 Monotone-Branch: ca.inverse.sogo --- SoObjects/SOGo/GNUmakefile.preamble | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/SoObjects/SOGo/GNUmakefile.preamble b/SoObjects/SOGo/GNUmakefile.preamble index 7823443df..d35e9d3af 100644 --- a/SoObjects/SOGo/GNUmakefile.preamble +++ b/SoObjects/SOGo/GNUmakefile.preamble @@ -21,10 +21,16 @@ SOGo_LIBRARIES_DEPEND_UPON += \ -lNGCards \ -lNGMime \ -lNGStreams -lNGExtensions -lEOControl \ - -lXmlRpc -lDOM -lSaxObjC -lcrypt \ + -lXmlRpc -lDOM -lSaxObjC \ -lNGLdap -lSBJson \ -lGDLContentStore +ifeq ($(findstring openbsd, $(GNUSTEP_HOST_OS)), openbsd) +SOGo_LIBRARIES_DEPEND_UPON += -lcrypto +else +SOGo_LIBRARIES_DEPEND_UPON += -lcrypt +endif + ADDITIONAL_TOOL_LIBS += \ -L$(GNUSTEP_OBJ_DIR)/ \ -lSOGo \