From 16f5dc821662fa5f120c8339fae13ec46472fc63 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Thu, 31 Oct 2013 09:20:40 -0700 Subject: [PATCH] Botan uses dlopen & family, so it must link to -ldl Indirect lib dependencies are not allowed. Code using Botan needs to link directly to libdl. Change-Id: I96bde3adf2aef9fdc60af1a70f70e17a79b24048 Reviewed-by: Christian Kandeler Reviewed-by: Orgad Shaneh --- src/libs/3rdparty/botan/botan.pri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/3rdparty/botan/botan.pri b/src/libs/3rdparty/botan/botan.pri index 3ff57ded1ba..7998aa95a8b 100644 --- a/src/libs/3rdparty/botan/botan.pri +++ b/src/libs/3rdparty/botan/botan.pri @@ -51,6 +51,6 @@ unix:*-g++* { } linux*|freebsd* { - LIBS += -lrt + LIBS += -lrt $$QMAKE_LIBS_DYNLOAD } }