pkgsrc/lang/tcl85/patches/patch-unix_tclUnixFCmd.c
taca 3fad68aaee Restore tcl-8.5.15 package as lang/tcl85 with bump PKGREVISION since
x11/ruby-tk package needs tcl/tk 8.5 and it dosen't support tcl/tk 8.6
and later.
2014-03-10 14:20:44 +00:00

21 lines
513 B
C

$NetBSD: patch-unix_tclUnixFCmd.c,v 1.1 2014/03/10 14:20:44 taca Exp $
Carried over from TCL 8.4
--- unix/tclUnixFCmd.c.orig 2012-07-16 11:57:06.000000000 +0000
+++ unix/tclUnixFCmd.c
@@ -660,6 +660,14 @@ TclpDeleteFile(
*---------------------------------------------------------------------------
*/
+/* Reintroduced here for the benefit of scotty */
+int
+TclpCreateDirectory(path)
+ CONST char *path;
+{
+ return DoCreateDirectory(path);
+}
+
int
TclpObjCreateDirectory(
Tcl_Obj *pathPtr)