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/patches | |
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/patches')
-rw-r--r-- | lang/tcl/patches/patch-ah | 19 |
1 files changed, 19 insertions, 0 deletions
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; |