Remove --without-libldap from configure args

This has been broken at runtime since the update to OpenLDAP 2.6.2.
ruby-ldap previously linked to libldap_r, but the OpenLDAP update removed
libldap_r, and the code compiled without linking to any ldap library,
breaking at runtime.

Update WANTLIB while here.
This commit is contained in:
jeremy 2022-07-12 23:39:34 +00:00
parent cacec3dbfc
commit a66f4fad40
1 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
COMMENT= Ruby interface to some common LDAP libraries
PKGNAME= ldap-0.9.20
REVISION= 1
REVISION= 2
DISTNAME= ruby-${PKGNAME}
CATEGORIES= databases
@ -18,11 +18,10 @@ PERMIT_PACKAGE= Yes
MODULES= lang/ruby
WANTLIB= crypto pthread ssl ldap lber
WANTLIB= crypto pthread ssl ldap lber sasl2
LIB_DEPENDS= databases/openldap
CONFIGURE_STYLE= ruby gem ext
CONFIGURE_ARGS= --without-libldap
.include <bsd.port.mk>