summaryrefslogtreecommitdiff
path: root/dev-lang/tcl/files
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-10-04 13:52:32 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-10-04 19:36:54 +0200
commitba388e566c81be82659a83cefd329ce67f54ef1c (patch)
treecdd3c31d028b69d47adddcbf6b92b9b9e7c48540 /dev-lang/tcl/files
parent4de7c0e097c5d5c223e0b7da111ba4ef842a6854 (diff)
downloadgentoo-ba388e566c81be82659a83cefd329ce67f54ef1c.tar.gz
gentoo-ba388e566c81be82659a83cefd329ce67f54ef1c.tar.bz2
gentoo-ba388e566c81be82659a83cefd329ce67f54ef1c.zip
dev-lang/tcl: drop 8.6.11, 8.6.12-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-lang/tcl/files')
-rw-r--r--dev-lang/tcl/files/tcl-8.6.12-configure-clang16.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-lang/tcl/files/tcl-8.6.12-configure-clang16.patch b/dev-lang/tcl/files/tcl-8.6.12-configure-clang16.patch
deleted file mode 100644
index 8714faccbe1b..000000000000
--- a/dev-lang/tcl/files/tcl-8.6.12-configure-clang16.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://github.com/tcltk/tcl/commit/5eb33c5c7e9d6b703275b680f337691ecfe38f2a
-
-From 5eb33c5c7e9d6b703275b680f337691ecfe38f2a Mon Sep 17 00:00:00 2001
-From: "jan.nijtmans" <nijtmans@users.sourceforge.net>
-Date: Sun, 7 Nov 2021 21:34:08 +0000
-Subject: [PATCH] Fix [15845d9fd8]: unix/tcl.m4: implicit declaration of exit()
- in timezone variable checks
-
---- a/unix/tcl.m4
-+++ b/unix/tcl.m4
-@@ -2349,7 +2349,8 @@ AC_DEFUN([SC_TIME_HANDLER], [
- # (like convex) have timezone functions, etc.
- #
- AC_CACHE_CHECK([long timezone variable], tcl_cv_timezone_long, [
-- AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]],
-+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>
-+#include <stdlib.h>]],
- [[extern long timezone;
- timezone += 1;
- exit (0);]])],
-@@ -2361,7 +2362,8 @@ AC_DEFUN([SC_TIME_HANDLER], [
- # On some systems (eg IRIX 6.2), timezone is a time_t and not a long.
- #
- AC_CACHE_CHECK([time_t timezone variable], tcl_cv_timezone_time, [
-- AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]],
-+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>
-+#include <stdlib.h>]],
- [[extern time_t timezone;
- timezone += 1;
- exit (0);]])],
-