summaryrefslogtreecommitdiff
path: root/src/ivytcl.c
diff options
context:
space:
mode:
authorbustico2015-01-07 14:01:47 +0000
committerbustico2015-01-07 14:01:47 +0000
commit0b505ec15a43b4b8e4c2584d0c4f81ff3391f3de (patch)
treec90ded52e7b6385ffea988062f21108dcdb3f185 /src/ivytcl.c
parent2d66c27090d6654bbda21f7cc8351b9a64f9b4f9 (diff)
downloadivy-c-0b505ec15a43b4b8e4c2584d0c4f81ff3391f3de.zip
ivy-c-0b505ec15a43b4b8e4c2584d0c4f81ff3391f3de.tar.gz
ivy-c-0b505ec15a43b4b8e4c2584d0c4f81ff3391f3de.tar.bz2
ivy-c-0b505ec15a43b4b8e4c2584d0c4f81ff3391f3de.tar.xz
* fix uninitialised variable in ivy-bind
* start tcl interpreter early * add some pkg-config configuration file * use header file from tcl-dev (which need to be installed)
Diffstat (limited to 'src/ivytcl.c')
-rw-r--r--src/ivytcl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ivytcl.c b/src/ivytcl.c
index ed23713..6806d49 100644
--- a/src/ivytcl.c
+++ b/src/ivytcl.c
@@ -64,6 +64,7 @@ void IvyChannelInit(void)
#endif
if ( channel_initialized ) return;
+ Tcl_FindExecutable(NULL);
/* pour eviter les plantages quand les autres applis font core-dump */
#ifndef WIN32
signal( SIGPIPE, SIG_IGN);