Skip to content

Instantly share code, notes, and snippets.

@bosko
Created June 18, 2011 10:40
Show Gist options
  • Save bosko/1032979 to your computer and use it in GitHub Desktop.
Save bosko/1032979 to your computer and use it in GitHub Desktop.
Set tcl_library to the value of system variable
diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c
index 8701cfe..b058443 100644
--- a/ext/tk/tcltklib.c
+++ b/ext/tk/tcltklib.c
@@ -5614,6 +5614,7 @@ ip_init(argc, argv, self)
/* from Tcl_AppInit() */
DUMP1("Tcl_Init");
+ Tcl_SetVar(ptr->ip, "tcl_library", getenv("TCL_LIBRARY"), TCL_GLOBAL_ONLY);
if (Tcl_Init(ptr->ip) == TCL_ERROR) {
rb_raise(rb_eRuntimeError, "%s", Tcl_GetStringResult(ptr->ip));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment