From f14ffca5fe5dca891200d5b7898d373b4f987427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz=20=28arab=2C=20vx?= =?UTF-8?q?p=29?= Date: Mon, 22 Jan 2018 18:02:21 +0000 Subject: vars/build.vars:native_packages_dev:tcl: adds tcl v8.7a1. patches/tcl-8.7a1.local.patch:unix/configure: replace `uname -s` w/ ${target}. --- patches/tcl-8.7a1.local.patch | 112 ++++++++++++++++++++++++++++++++++++++++++ vars/build.vars | 6 ++- 2 files changed, 117 insertions(+), 1 deletion(-) create mode 100644 patches/tcl-8.7a1.local.patch diff --git a/patches/tcl-8.7a1.local.patch b/patches/tcl-8.7a1.local.patch new file mode 100644 index 00000000..fb1eac97 --- /dev/null +++ b/patches/tcl-8.7a1.local.patch @@ -0,0 +1,112 @@ +--- unix/configure.orig 2017-09-07 12:54:11.000000000 +0000 ++++ unix/configure 2018-01-22 18:01:25.880000000 +0000 +@@ -3957,7 +3957,7 @@ + + $as_echo "#define _REENTRANT 1" >>confdefs.h + +- if test "`uname -s`" = "SunOS" ; then ++ if test "${target}" = "SunOS" ; then + + $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h + +@@ -4893,13 +4893,13 @@ + if test "${TEA_PLATFORM}" = "windows" ; then + tcl_cv_sys_version=windows + else +- tcl_cv_sys_version=`uname -s`-`uname -r` ++ tcl_cv_sys_version=${target}-`uname -r` + if test "$?" -ne 0 ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: can't find uname command" >&5 + $as_echo "$as_me: WARNING: can't find uname command" >&2;} + tcl_cv_sys_version=unknown + else +- if test "`uname -s`" = "AIX" ; then ++ if test "${target}" = "AIX" ; then + tcl_cv_sys_version=AIX-`uname -v`.`uname -r` + fi + fi +@@ -7429,7 +7429,7 @@ + fi + + +-if test "`uname -s`" = "Darwin" && test "${TCL_THREADS}" = 1 && \ ++if test "${target}" = "Darwin" && test "${TCL_THREADS}" = 1 && \ + test "`uname -r | awk -F. '{print $1}'`" -lt 7; then + # prior to Darwin 7, realpath is not threadsafe, so don't + # use it when threads are enabled, c.f. bug # 711232 +@@ -7937,7 +7937,7 @@ + + fi + +- if test "`uname -s`" = "Darwin" && \ ++ if test "${target}" = "Darwin" && \ + test "`uname -r | awk -F. '{print $1}'`" -gt 5; then + # Starting with Darwin 6 (Mac OSX 10.2), gethostbyX + # are actually MT-safe as they always return pointers +@@ -7949,7 +7949,7 @@ + $as_echo "#define HAVE_MTSAFE_GETHOSTBYADDR 1" >>confdefs.h + + +- elif test "`uname -s`" = "HP-UX" && \ ++ elif test "${target}" = "HP-UX" && \ + test "`uname -r|sed -e 's|B\.||' -e 's|\..*$||'`" -gt 10; then + # Starting with HPUX 11.00 (we believe), gethostbyX + # are actually MT-safe as they always return pointers +@@ -8330,7 +8330,7 @@ + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for advanced notifier support" >&5 + $as_echo_n "checking for advanced notifier support... " >&6; } +-case x`uname -s` in ++case x${target} in + xLinux) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: epoll(7)" >&5 + $as_echo "epoll(7)" >&6; } +@@ -9676,7 +9676,7 @@ + # Darwin specific API checks and defines + #-------------------------------------------------------------------- + +-if test "`uname -s`" = "Darwin" ; then ++if test "${target}" = "Darwin" ; then + for ac_func in getattrlist + do : + ac_fn_c_check_func "$LINENO" "getattrlist" "ac_cv_func_getattrlist" +@@ -9942,13 +9942,13 @@ + if test "${TEA_PLATFORM}" = "windows" ; then + tcl_cv_sys_version=windows + else +- tcl_cv_sys_version=`uname -s`-`uname -r` ++ tcl_cv_sys_version=${target}-`uname -r` + if test "$?" -ne 0 ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: can't find uname command" >&5 + $as_echo "$as_me: WARNING: can't find uname command" >&2;} + tcl_cv_sys_version=unknown + else +- if test "`uname -s`" = "AIX" ; then ++ if test "${target}" = "AIX" ; then + tcl_cv_sys_version=AIX-`uname -v`.`uname -r` + fi + fi +@@ -10133,9 +10133,9 @@ + + DTRACE_SRC="\${DTRACE_SRC}" + DTRACE_HDR="\${DTRACE_HDR}" +- if test "`uname -s`" != "Darwin" ; then ++ if test "${target}" != "Darwin" ; then + DTRACE_OBJ="\${DTRACE_OBJ}" +- if test "`uname -s`" = "SunOS" -a "$SHARED_BUILD" = "0" ; then ++ if test "${target}" = "SunOS" -a "$SHARED_BUILD" = "0" ; then + # Need to create an intermediate object file to ensure tclDTrace.o + # gets included when linking against the static tcl library. + STLIB_LD='stlib_ld () { /usr/ccs/bin/ld -r -o $${1%.a}.o "$${@:2}" && '"${STLIB_LD}"' $${1} $${1%.a}.o ; } && stlib_ld' +@@ -10219,9 +10219,9 @@ + # AIX remembers this path and will attempt to use it at run-time to look + # up the Tcl library. + +-if test "`uname -s`" = "Darwin" ; then ++if test "${target}" = "Darwin" ; then + +- if test "`uname -s`" = "Darwin" ; then ++ if test "${target}" = "Darwin" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to package libraries" >&5 + $as_echo_n "checking how to package libraries... " >&6; } + # Check whether --enable-framework was given. diff --git a/vars/build.vars b/vars/build.vars index 91b8dc70..6d53b7e0 100644 --- a/vars/build.vars +++ b/vars/build.vars @@ -760,7 +760,7 @@ mksh sbase sed tar tcsh the_silver_searcher toilet ubase util_linux which zsh"; # # Packages list native_packages_dev NATIVE_PACKAGES_DEV_PACKAGES=" -bdwgc bison chicken cparser diffutils flex lunix m4 make man_db patch patchutils perl python3 ruby smallbasic"; +bdwgc bison chicken cparser diffutils flex lunix m4 make man_db patch patchutils perl python3 ruby smallbasic tcl"; : ${PKG_BDWGC_URLS_GIT:="bdwgc=https://github.com/ivmai/bdwgc@master"}; : ${PKG_BISON_SHA256SUM:=a72428c7917bdf9fa93cb8181c971b6e22834125848cf1d03ce10b1bb0716fe1}; : ${PKG_BISON_VERSION:=3.0.4}; @@ -832,6 +832,10 @@ bdwgc bison chicken cparser diffutils flex lunix m4 make man_db patch patchutils : ${PKG_SMALLBASIC_URLS_GIT:="SmallBASIC=https://github.com/smallbasic/SmallBASIC@master"}; : ${PKG_SMALLBASIC_CFLAGS_CONFIGURE_EXTRA:=-std=gnu99}; : ${PKG_SMALLBASIC_IN_TREE:=1}; +: ${PKG_TCL_SHA256SUM:=2bbd4e0bbdebeaf5dc6cc823d0805afb45c764292f6667d9ce2b9fcf5399e0dc}; +: ${PKG_TCL_VERSION:=8.7a1}; +: ${PKG_TCL_URL:=http://kuiper.mirrorservice.org/sites/ftp.tcl.tk/pub/tcl/tcl8_7/tcl${PKG_TCL_VERSION}-src.tar.gz}; +: ${PKG_TCL_SUBDIR:=tcl${PKG_TCL_VERSION}/unix}; # # Packages list native_packages_etc -- cgit v1.2.3