Remove dependency on libldap

This commit is contained in:
2025-11-12 10:12:28 +02:00
parent 52cdb5906e
commit bad1a54840
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
name: curl name: curl
description: Command line tool and library for transferring data with URLs description: Command line tool and library for transferring data with URLs
version: 8.17.0 version: 8.17.0
revision: 1 revision: 2
url: https://curl.se/ url: https://curl.se/
license: MIT license: MIT
architecture: any architecture: any
+6
View File
@@ -13,7 +13,13 @@ build() {
--enable-ipv6 \ --enable-ipv6 \
--enable-websockets \ --enable-websockets \
--enable-threaded-resolver \ --enable-threaded-resolver \
--disable-ldap \
--disable-ldaps \
--with-ca-path=/etc/ssl/certs --with-ca-path=/etc/ssl/certs
# Prevent overlinking due to libtool
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make make
} }