Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:Ledest:erlang:23
erlang
1380-Add-missing-asn1-application-in-eldap.app....
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 1380-Add-missing-asn1-application-in-eldap.app.src.patch of Package erlang
From 21f22248d5dfd2db1b22dbd47bcda8800b6662d1 Mon Sep 17 00:00:00 2001 From: xadhoom <mbrancaleoni@gmail.com> Date: Mon, 16 Oct 2023 08:12:47 +0200 Subject: [PATCH] Add missing asn1 application in eldap.app.src Discovered via elixir-lang/elixir#12985 In recent elixir (1.15.x) the compiler does code pruning to avoid loading not needed modules. Since eldap needs asn1 but is not declared into its applications, eldap fails to work in recent elixir due to asn1 modules not included at runtime. --- lib/eldap/src/eldap.app.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/eldap/src/eldap.app.src b/lib/eldap/src/eldap.app.src index 032a391936..53e490cc3a 100644 --- a/lib/eldap/src/eldap.app.src +++ b/lib/eldap/src/eldap.app.src @@ -3,7 +3,7 @@ {vsn, "%VSN%"}, {modules, [eldap, 'ELDAPv3']}, {registered, []}, - {applications, [kernel, stdlib]}, + {applications, [kernel, stdlib, asn1]}, {env, []}, {runtime_dependencies, ["stdlib-2.0","ssl-5.3.4","kernel-3.0","erts-6.0", "asn1-3.0"]} -- 2.35.3
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor