mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
package/erlang: bump to version 22.2
The issue fixed by 0003-Link-with-LDLIBS-instead-of-LIBS-for-DED.patch (ERL-529) has been fixed since OTP20.3 (a5cbcbdb85) and is no longer required. OTP provides wrapper scripts (otp_build and configure) which perform tasks previously handled directly by autotools i.e. autoreconf. Signed-off-by: Frank Vanbever <frank.vanbever@essensium.com> [Thomas: - drop the save_bootstrap step, which is not needed - properly run the autoconf step for both the host and target variants] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
7eb130cce3
commit
6cdf1f44e4
@ -1,42 +0,0 @@
|
|||||||
From 011752ec7b31e3dde376270fc65c7ee70644f6e7 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Johan Oudinet <johan.oudinet@gmail.com>
|
|
||||||
Date: Wed, 6 Dec 2017 15:01:17 +0100
|
|
||||||
Subject: [PATCH] Link with LDLIBS instead of LIBS for DED
|
|
||||||
|
|
||||||
Fix ERL-529 by avoiding to link with libz for no reason.
|
|
||||||
|
|
||||||
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
|
|
||||||
---
|
|
||||||
lib/asn1/c_src/Makefile | 2 +-
|
|
||||||
lib/runtime_tools/c_src/Makefile.in | 2 +-
|
|
||||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/lib/asn1/c_src/Makefile b/lib/asn1/c_src/Makefile
|
|
||||||
index 1f714df357..f7c6b8b9bc 100644
|
|
||||||
--- a/lib/asn1/c_src/Makefile
|
|
||||||
+++ b/lib/asn1/c_src/Makefile
|
|
||||||
@@ -126,7 +126,7 @@ $(NIF_LIB_FILE): $(NIF_STATIC_OBJ_FILES)
|
|
||||||
$(V_RANLIB) $@
|
|
||||||
|
|
||||||
$(NIF_SHARED_OBJ_FILE): $(NIF_OBJ_FILES)
|
|
||||||
- $(V_LD) $(LDFLAGS) -o $(NIF_SHARED_OBJ_FILE) $(NIF_OBJ_FILES) $(CLIB_FLAGS) $(LIBS)
|
|
||||||
+ $(V_LD) $(LDFLAGS) -o $(NIF_SHARED_OBJ_FILE) $(NIF_OBJ_FILES) $(CLIB_FLAGS) $(LDLIBS)
|
|
||||||
|
|
||||||
# ----------------------------------------------------
|
|
||||||
# Release Target
|
|
||||||
diff --git a/lib/runtime_tools/c_src/Makefile.in b/lib/runtime_tools/c_src/Makefile.in
|
|
||||||
index 4530a83aee..4e13e0d789 100644
|
|
||||||
--- a/lib/runtime_tools/c_src/Makefile.in
|
|
||||||
+++ b/lib/runtime_tools/c_src/Makefile.in
|
|
||||||
@@ -95,7 +95,7 @@ $(OBJDIR)/%$(TYPEMARKER).o: %.c dyntrace_lttng.h
|
|
||||||
$(V_CC) -c -o $@ $(ALL_CFLAGS) $<
|
|
||||||
|
|
||||||
$(LIBDIR)/%$(TYPEMARKER).@DED_EXT@: $(OBJDIR)/%$(TYPEMARKER).o
|
|
||||||
- $(V_LD) $(LDFLAGS) -o $@ $^ $(LIBS)
|
|
||||||
+ $(V_LD) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(TRACE_LIBS)
|
|
||||||
--
|
|
||||||
2.14.1
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
# md5 from http://www.erlang.org/download/MD5, sha256 locally computed
|
# md5 from http://www.erlang.org/download/MD5, sha256 locally computed
|
||||||
md5 350988f024f88e9839c3715b35e7e27a otp_src_21.0.tar.gz
|
md5 b2b48dad6e69c1e882843edbf2abcfd3 otp_src_22.2.tar.gz
|
||||||
sha256 c7d247c0cad2d2e718eaca2e2dff051136a1347a92097abf19ebf65ea2870131 otp_src_21.0.tar.gz
|
sha256 89c2480cdac566065577c82704a48e10f89cf2e6ca5ab99e1cf80027784c678f otp_src_22.2.tar.gz
|
||||||
sha256 809fa1ed21450f59827d1e9aec720bbc4b687434fa22283c6cb5dd82a47ab9c0 LICENSE.txt
|
sha256 809fa1ed21450f59827d1e9aec720bbc4b687434fa22283c6cb5dd82a47ab9c0 LICENSE.txt
|
||||||
|
16
package/erlang/erlang.mk
vendored
16
package/erlang/erlang.mk
vendored
@ -5,7 +5,7 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# See note below when updating Erlang
|
# See note below when updating Erlang
|
||||||
ERLANG_VERSION = 21.0
|
ERLANG_VERSION = 22.2
|
||||||
ERLANG_SITE = http://www.erlang.org/download
|
ERLANG_SITE = http://www.erlang.org/download
|
||||||
ERLANG_SOURCE = otp_src_$(ERLANG_VERSION).tar.gz
|
ERLANG_SOURCE = otp_src_$(ERLANG_VERSION).tar.gz
|
||||||
ERLANG_DEPENDENCIES = host-erlang
|
ERLANG_DEPENDENCIES = host-erlang
|
||||||
@ -15,11 +15,17 @@ ERLANG_LICENSE_FILES = LICENSE.txt
|
|||||||
ERLANG_INSTALL_STAGING = YES
|
ERLANG_INSTALL_STAGING = YES
|
||||||
|
|
||||||
# Patched erts/aclocal.m4
|
# Patched erts/aclocal.m4
|
||||||
ERLANG_AUTORECONF = YES
|
define ERLANG_RUN_AUTOCONF
|
||||||
|
cd $(@D) && PATH=$(BR_PATH) ./otp_build autoconf
|
||||||
|
endef
|
||||||
|
ERLANG_DEPENDENCIES += host-autoconf
|
||||||
|
ERLANG_PRE_CONFIGURE_HOOKS += ERLANG_RUN_AUTOCONF
|
||||||
|
HOST_ERLANG_DEPENDENCIES += host-autoconf
|
||||||
|
HOST_ERLANG_PRE_CONFIGURE_HOOKS += ERLANG_RUN_AUTOCONF
|
||||||
|
|
||||||
# Whenever updating Erlang, this value should be updated as well, to the
|
# Whenever updating Erlang, this value should be updated as well, to the
|
||||||
# value of EI_VSN in the file lib/erl_interface/vsn.mk
|
# value of EI_VSN in the file lib/erl_interface/vsn.mk
|
||||||
ERLANG_EI_VSN = 3.10.3
|
ERLANG_EI_VSN = 3.13.1
|
||||||
|
|
||||||
# The configure checks for these functions fail incorrectly
|
# The configure checks for these functions fail incorrectly
|
||||||
ERLANG_CONF_ENV = ac_cv_func_isnan=yes ac_cv_func_isinf=yes
|
ERLANG_CONF_ENV = ac_cv_func_isnan=yes ac_cv_func_isinf=yes
|
||||||
@ -38,7 +44,7 @@ HOST_ERLANG_CONF_ENV += ERL_TOP=$(@D)
|
|||||||
|
|
||||||
# erlang uses openssl for all things crypto. Since the host tools (such as
|
# erlang uses openssl for all things crypto. Since the host tools (such as
|
||||||
# rebar) uses crypto, we need to build host-erlang with support for openssl.
|
# rebar) uses crypto, we need to build host-erlang with support for openssl.
|
||||||
HOST_ERLANG_DEPENDENCIES = host-openssl
|
HOST_ERLANG_DEPENDENCIES += host-openssl
|
||||||
HOST_ERLANG_CONF_OPTS = --without-javac --with-ssl=$(HOST_DIR)
|
HOST_ERLANG_CONF_OPTS = --without-javac --with-ssl=$(HOST_DIR)
|
||||||
|
|
||||||
HOST_ERLANG_CONF_OPTS += --without-termcap
|
HOST_ERLANG_CONF_OPTS += --without-termcap
|
||||||
@ -65,7 +71,7 @@ ERLANG_CONF_OPTS += --without-odbc
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# Always use Buildroot's zlib
|
# Always use Buildroot's zlib
|
||||||
ERLANG_CONF_OPTS += --enable-shared-zlib
|
ERLANG_CONF_OPTS += --disable-builtin-zlib
|
||||||
ERLANG_DEPENDENCIES += zlib
|
ERLANG_DEPENDENCIES += zlib
|
||||||
|
|
||||||
# Remove source, example, gs and wx files from staging and target.
|
# Remove source, example, gs and wx files from staging and target.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user