Created
June 18, 2011 10:40
-
-
Save bosko/1032979 to your computer and use it in GitHub Desktop.
Set tcl_library to the value of system variable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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