blob: dd1246538c090b846867561c6d34928e9e9a993e [file] [log] [blame]
Andrew Geissler69721092021-07-23 12:57:00 -04001From 1f24231095a59debcf25d0e3309dc5d1056a7fad Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Jens Rehsack <rehsack@gmail.com>
3Date: Thu, 19 Nov 2015 20:45:56 +0100
Andrew Geissler69721092021-07-23 12:57:00 -04004Subject: [PATCH] avoid openldap unless wanted
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005
Andrew Geissler69721092021-07-23 12:57:00 -04006Upstream-Status: Inappropriate [embedded specific]
7
8Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08009---
10 wscript | 4 +---
11 1 file changed, 1 insertion(+), 3 deletions(-)
12
13diff --git a/wscript b/wscript
Andrew Geissler69721092021-07-23 12:57:00 -040014index 722fdf6..22700d5 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080015--- a/wscript
16+++ b/wscript
Andrew Geissler69721092021-07-23 12:57:00 -040017@@ -153,9 +153,7 @@ def configure(conf):
Patrick Williamsb48b7b42016-08-17 15:04:38 -050018 if conf.env.standalone_ldb:
19 conf.CHECK_XSLTPROC_MANPAGES()
20
21- # we need this for the ldap backend
22- if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
23- conf.env.ENABLE_LDAP_BACKEND = True
24+ conf.env.ENABLE_LDAP_BACKEND = False
25
26 # we don't want any libraries or modules to rely on runtime
27 # resolution of symbols
Andrew Geissler69721092021-07-23 12:57:00 -040028--
292.17.1
30