diff options
author | he <he@pkgsrc.org> | 2004-05-13 12:57:42 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2004-05-13 12:57:42 +0000 |
commit | a9336f5ec3e7266b16125dec5748f5c4fcbdb279 (patch) | |
tree | 805071dd694ef18ade062be5054a2bfe5c529a2f /lang/tcl | |
parent | 83caf8d871a941b65547b12b07fa94b8290f4472 (diff) | |
download | pkgsrc-a9336f5ec3e7266b16125dec5748f5c4fcbdb279.tar.gz |
Reintroduce TclpCreateDirectory for the benefit of tcl-scotty.
Comment indicates it was here earlier, now apparently scheduled
to be replaced by TclpObjCreateDirectory, but this will have to
do as a workaround for now.
Diffstat (limited to 'lang/tcl')
-rw-r--r-- | lang/tcl/distinfo | 3 | ||||
-rw-r--r-- | lang/tcl/patches/patch-ah | 19 |
2 files changed, 21 insertions, 1 deletions
diff --git a/lang/tcl/distinfo b/lang/tcl/distinfo index 574e0ab809f..abd12513249 100644 --- a/lang/tcl/distinfo +++ b/lang/tcl/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.22 2004/04/09 23:37:28 danw Exp $ +$NetBSD: distinfo,v 1.23 2004/05/13 12:57:42 he Exp $ SHA1 (tcl8.4.6-src.tar.gz) = d21495ca04419fc3b1594b96b19116040c33a3f0 Size (tcl8.4.6-src.tar.gz) = 3448711 bytes @@ -8,3 +8,4 @@ SHA1 (patch-ac) = efc40f45f73cec2770231ff515314fc41bbd166e SHA1 (patch-ae) = 9a6f9b47c926f851a799ece713668f0955344ce3 SHA1 (patch-af) = 164fa9ee7fe4baa9b3f3a13716aefbf415e3be0a SHA1 (patch-ag) = d1b038f6006ef3611fec9d8cef314f8959a5cd08 +SHA1 (patch-ah) = 0aaa349fcf9ce736e1f7d3dad377ee355f549ecb diff --git a/lang/tcl/patches/patch-ah b/lang/tcl/patches/patch-ah new file mode 100644 index 00000000000..a3c19d60d04 --- /dev/null +++ b/lang/tcl/patches/patch-ah @@ -0,0 +1,19 @@ +$NetBSD: patch-ah,v 1.1 2004/05/13 12:57:42 he Exp $ + +--- tclUnixFCmd.c.orig 2003-10-03 19:45:37.000000000 +0200 ++++ tclUnixFCmd.c +@@ -561,6 +561,14 @@ TclpDeleteFile(path) + *--------------------------------------------------------------------------- + */ + ++/* Reintroduced here for the benefit of scotty */ ++int ++TclpCreateDirectory(path) ++ CONST char *path; ++{ ++ return DoCreateDirectory(path); ++} ++ + int + TclpObjCreateDirectory(pathPtr) + Tcl_Obj *pathPtr; |