mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			667 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			667 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 5ff9fe841d118d5d853b2939cc69bb242512eecc Mon Sep 17 00:00:00 2001
 | |
| From: Noel Kuntze <noel.kuntze@thermi.consulting>
 | |
| Date: Sat, 18 Dec 2021 01:21:13 +0100
 | |
| Subject: [PATCH] configure.ac: depend on libldap, not libldap_r (doesn't exist
 | |
|  anymore in openldap on Alpine)
 | |
| 
 | |
| ---
 | |
|  configure.ac | 2 +-
 | |
|  1 file changed, 1 insertion(+), 1 deletion(-)
 | |
| 
 | |
| diff --git a/configure.ac b/configure.ac
 | |
| index fcc7fd92f..b7f641546 100644
 | |
| --- a/configure.ac
 | |
| +++ b/configure.ac
 | |
| @@ -423,7 +423,7 @@ LDAP_FLAGS=""
 | |
|  LDAP_LIBS=""
 | |
|  AC_CHECK_HEADERS([ldap.h], [
 | |
|  	LDAP_FLAGS="-DLDAP_DEPRECATED=1"
 | |
| -	LDAP_LIBS="-lldap_r"
 | |
| +	LDAP_LIBS="-lldap"
 | |
|  	want_ldap=yes
 | |
|  ])
 | |
|  AC_SUBST(LDAP_LIBS)
 | |
| -- 
 | |
| 2.34.1
 | |
| 
 |