diff options
author | nia <nia@pkgsrc.org> | 2022-05-07 06:30:40 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2022-05-07 06:30:40 +0000 |
commit | 30e1303079e7dcba3f88404a35905619f830df50 (patch) | |
tree | 2082cb838274feb967b4d8f6c4ef2fed832384a9 /emulators | |
parent | b814a87a468e64db874f2afb672ab611100f91a9 (diff) | |
download | pkgsrc-30e1303079e7dcba3f88404a35905619f830df50.tar.gz |
wine: Explicitly disable LDAP support, the base ldap from NetBSD 9.99.x
being coincidentally detected is causing build failures.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/wine/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index aa3ba003939..97883609a66 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.238 2022/05/05 08:32:50 nia Exp $ +# $NetBSD: Makefile,v 1.239 2022/05/07 06:30:40 nia Exp $ DISTNAME= wine-5.0.5 -PKGREVISION= 7 +PKGREVISION= 8 CATEGORIES= emulators MASTER_SITES= https://dl.winehq.org/wine/source/${PKGVERSION_NOREV:R}/ MASTER_SITES+= http://mirrors.ibiblio.org/wine/source/${PKGVERSION_NOREV:R}/ @@ -30,6 +30,8 @@ CONFIGURE_ARGS+= --without-capi CONFIGURE_ARGS+= --without-gphoto CONFIGURE_ARGS+= --without-gssapi CONFIGURE_ARGS+= --without-hal +# LDAP causes build failures on NetBSD 9.99.x and newer. +CONFIGURE_ARGS+= --without-ldap CONFIGURE_ARGS+= --without-krb5 CONFIGURE_ARGS+= --without-opencl CONFIGURE_ARGS+= --without-udev |