Updating link to change in openSUSE:Factory/tcl revision 19.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:tcl/tcl?expand=0&rev=b3d7566b877dade88f3854eafb6ae28b
This commit is contained in:
OBS User buildservice-autocommit 2010-01-29 13:54:40 +00:00 committed by Git OBS Bridge
parent 25f5e7431b
commit bb1efeda28
3 changed files with 22 additions and 4 deletions

11
tcl-fortify.patch Normal file
View File

@ -0,0 +1,11 @@
--- generic/tclTrace.c.orig 2010-01-21 12:38:47.000000000 +0100
+++ generic/tclTrace.c 2010-01-21 12:55:05.000000000 +0100
@@ -909,7 +909,7 @@
}
ctvarPtr->traceCmdInfo.length = length;
flags |= TCL_TRACE_UNSETS | TCL_TRACE_RESULT_OBJECT;
- strcpy(ctvarPtr->traceCmdInfo.command, command);
+ memcpy(ctvarPtr->traceCmdInfo.command, command, length + 1);
ctvarPtr->traceInfo.traceProc = TraceVarProc;
ctvarPtr->traceInfo.clientData = (ClientData)
&ctvarPtr->traceCmdInfo;

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Jan 21 12:55:33 CET 2010 - rguenther@suse.de
- Fix fortify violation in TraceVariableObjCmd.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 18 16:18:20 CET 2009 - max@suse.de Wed Nov 18 16:18:20 CET 2009 - max@suse.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package tcl (Version 8.5.8) # spec file for package tcl (Version 8.5.8)
# #
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -21,11 +21,11 @@
Name: tcl Name: tcl
Url: http://www.tcl.tk Url: http://www.tcl.tk
Version: 8.5.8 Version: 8.5.8
Release: 1 Release: 2
%define TCL_MINOR %(echo %version | cut -c1-3) %define TCL_MINOR %(echo %version | cut -c1-3)
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: The Tcl Programming Language Summary: The Tcl Programming Language
License: BSD 3-clause (or similar) License: BSD3c(or similar)
Group: Development/Languages/Tcl Group: Development/Languages/Tcl
AutoReqProv: on AutoReqProv: on
# bug437293 # bug437293
@ -41,6 +41,7 @@ Source2: baselibs.conf
Source3: macros.tcl Source3: macros.tcl
Patch0: tcl.patch Patch0: tcl.patch
Patch1: tcl-unload.patch Patch1: tcl-unload.patch
Patch2: tcl-fortify.patch
%description %description
Tcl (Tool Command Language) is a very powerful but easy to learn Tcl (Tool Command Language) is a very powerful but easy to learn
@ -61,7 +62,7 @@ Authors:
%package devel %package devel
Group: Development/Libraries/Tcl Group: Development/Libraries/Tcl
License: BSD 3-clause (or similar) License: BSD3c(or similar)
Summary: Header Files and C API Documentation for Tcl Summary: Header Files and C API Documentation for Tcl
Requires: tcl = %version Requires: tcl = %version
# bug437293 # bug437293
@ -88,6 +89,7 @@ Authors:
%setup -q -n %name%version %setup -q -n %name%version
%patch0 %patch0
%patch1 %patch1
%patch2
%build %build
cd unix cd unix