initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
From: Andrew Ruder <andrew.ruder@elecsyscorp.com>
|
||||
Subject: [PATCH] Disable tcl compatibility layers
|
||||
|
||||
Turn off building compatibility layers for old/broken versions of
|
||||
standard functions (strstr, strtoul, strtod) with the assumption that
|
||||
anything buildroot is using as a standard C library will be good enough
|
||||
to not have broken behavior.
|
||||
|
||||
Signed-off-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
|
||||
[Fabrice: Update for 8.6.9]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
|
||||
diff --git a/unix/tcl.m4 b/unix/tcl.m4
|
||||
--- a/unix/tcl.m4
|
||||
+++ b/unix/tcl.m4
|
||||
@@ -2725,7 +2725,7 @@ AC_DEFUN([SC_TCL_CHECK_BROKEN_FUNC],[
|
||||
if test ["$tcl_ok"] = 1; then
|
||||
AC_CACHE_CHECK([proper ]$1[ implementation], [tcl_cv_]$1[_unbroken],
|
||||
AC_TRY_RUN([[int main() {]$2[}]],[tcl_cv_]$1[_unbroken]=ok,
|
||||
- [tcl_cv_]$1[_unbroken]=broken,[tcl_cv_]$1[_unbroken]=unknown))
|
||||
+ [tcl_cv_]$1[_unbroken]=broken,[tcl_cv_]$1[_unbroken]=ok))
|
||||
if test ["$tcl_cv_]$1[_unbroken"] = "ok"; then
|
||||
tcl_ok=1
|
||||
else
|
||||
@@ -0,0 +1,39 @@
|
||||
comment "tcl needs a toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_TCL
|
||||
bool "tcl"
|
||||
# fork()
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
# See this mailing list thread:
|
||||
# http://lists.busybox.net/pipermail/buildroot/2015-March/121198.html
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
TCL (Tool Command Language) is a simple textual language.
|
||||
|
||||
http://www.tcl.tk
|
||||
|
||||
if BR2_PACKAGE_TCL
|
||||
|
||||
config BR2_PACKAGE_TCL_DEL_ENCODINGS
|
||||
bool "delete encodings (saves 1.6Mb)"
|
||||
default y
|
||||
help
|
||||
Delete encoding files for TCL. If your programs do not use
|
||||
various tcl character recoding functions, you may safely
|
||||
choose Y here.
|
||||
|
||||
It saves approx. 1.6 Mb of space.
|
||||
|
||||
config BR2_PACKAGE_TCL_SHLIB_ONLY
|
||||
bool "install only shared library"
|
||||
default y
|
||||
help
|
||||
Install only TCL shared library and not binary tcl
|
||||
interpreter (tclsh).
|
||||
|
||||
Saves ~14kb.
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 ad0cd2de2c87b9ba8086b43957a0de3eb2eb565c7159d5f53ccbba3feb915f4e tcl8.6.9-src.tar.gz
|
||||
sha256 c0a69a2bfd757361ec7e6143973b103c90409316b49e9c88db26ad6388e79f16 license.terms
|
||||
@@ -0,0 +1,81 @@
|
||||
################################################################################
|
||||
#
|
||||
# tcl
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TCL_VERSION_MAJOR = 8.6
|
||||
TCL_VERSION = $(TCL_VERSION_MAJOR).9
|
||||
TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
|
||||
TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION)
|
||||
TCL_LICENSE = TCL
|
||||
TCL_LICENSE_FILES = license.terms
|
||||
TCL_CPE_ID_VENDOR = tcl
|
||||
TCL_SUBDIR = unix
|
||||
TCL_INSTALL_STAGING = YES
|
||||
TCL_AUTORECONF = YES
|
||||
|
||||
TCL_CONF_OPTS = \
|
||||
--disable-symbols \
|
||||
--disable-langinfo \
|
||||
--disable-framework
|
||||
|
||||
HOST_TCL_CONF_OPTS = \
|
||||
--disable-symbols \
|
||||
--disable-langinfo \
|
||||
--disable-framework
|
||||
|
||||
# I haven't found a good way to force pkgs to not build
|
||||
# or configure without just removing the entire pkg directory.
|
||||
define HOST_TCL_REMOVE_PACKAGES
|
||||
rm -fr $(@D)/pkgs/sqlite3* $(@D)/pkgs/tdbc*
|
||||
endef
|
||||
HOST_TCL_PRE_CONFIGURE_HOOKS += HOST_TCL_REMOVE_PACKAGES
|
||||
|
||||
# We remove the bundled sqlite as we prefer to not use bundled stuff at all.
|
||||
define TCL_REMOVE_PACKAGES
|
||||
rm -fr $(@D)/pkgs/sqlite3* \
|
||||
$(if $(BR2_PACKAGE_MYSQL),,$(@D)/pkgs/tdbcmysql*) \
|
||||
$(@D)/pkgs/tdbcodbc* \
|
||||
$(if $(BR2_PACKAGE_POSTGRESQL),,$(@D)/pkgs/tdbcpostgres*) \
|
||||
$(if $(BR2_PACKAGE_SQLITE),,$(@D)/pkgs/tdbcsqlite3*)
|
||||
endef
|
||||
TCL_PRE_CONFIGURE_HOOKS += TCL_REMOVE_PACKAGES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TCL_DEL_ENCODINGS),y)
|
||||
define TCL_REMOVE_ENCODINGS
|
||||
rm -rf $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/encoding/*
|
||||
endef
|
||||
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_ENCODINGS
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
|
||||
define TCL_REMOVE_TCLSH
|
||||
rm -f $(TARGET_DIR)/usr/bin/tclsh$(TCL_VERSION_MAJOR)
|
||||
endef
|
||||
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_TCLSH
|
||||
else
|
||||
define TCL_SYMLINK_TCLSH
|
||||
ln -sf tclsh$(TCL_VERSION_MAJOR) $(TARGET_DIR)/usr/bin/tclsh
|
||||
endef
|
||||
TCL_POST_INSTALL_TARGET_HOOKS += TCL_SYMLINK_TCLSH
|
||||
endif
|
||||
|
||||
# Until someone needs it, we don't handle locale installation. tcl has
|
||||
# a complicated method of translating LANG-style locale names into its internal
|
||||
# .msg name which makes it difficult to save the correct locales per the
|
||||
# configured whitelist.
|
||||
define TCL_REMOVE_EXTRA
|
||||
rm -fr $(TARGET_DIR)/usr/lib/tclConfig.sh \
|
||||
$(TARGET_DIR)/usr/lib/tclooConfig.sh \
|
||||
$(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/tclAppInit.c \
|
||||
$(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/msgs
|
||||
endef
|
||||
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_EXTRA
|
||||
|
||||
TCL_DEPENDENCIES = $(if $(BR2_PACKAGE_SQLITE),sqlite) \
|
||||
$(if $(BR2_PACKAGE_MYSQL),mysql) \
|
||||
$(if $(BR2_PACKAGE_POSTGRESQL),postgresql)
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user