From 55d6882537c518212377c5858832c27e9653ee68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20K=C3=B6rner?= Date: Tue, 22 Dec 2020 11:08:04 +0000 Subject: [PATCH] won't compile if USE_LDAP = 1 unless -llber is included --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9aca1eb3..39ab802e 100644 --- a/Makefile +++ b/Makefile @@ -106,7 +106,7 @@ endif ifdef USE_LDAP ifeq ($(USE_LDAP),1) override CFLAGS += -DHAVE_LDAP -LIBS += -lldap +LIBS += -lldap -llber endif endif