<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/1700" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2002-05-16T09:01:00-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/1700</id>

		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-05-16T09:01:00-04:00</updated>

		<published>2002-05-16T09:01:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6974#p6974</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6974#p6974"/>
		<title type="html"><![CDATA[Where does ./configure retrieve TCL version from?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6974#p6974"><![CDATA[
Read though configure.in and other configureation files, you will find the section of Tcl, and be able to loacte it's search locations.<br><br>Note, every directory that is in the search list, may contain Tcl, but eggdrop stops searching after the first found copy, so you may need to keep digging.<br><br>Note, if you read the scripts corectly, you will notice that it doesn't quickly sweep the directory. It actualy goes to each directory, and ch3ecks for more than 1 file name, once again, stopping at the first match.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu May 16, 2002 9:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-15T13:28:00-04:00</updated>

		<published>2002-05-15T13:28:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6941#p6941</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6941#p6941"/>
		<title type="html"><![CDATA[Where does ./configure retrieve TCL version from?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6941#p6941"><![CDATA[
Not sure where ****y linux keeps its tcl libs, but if you're a *bsd user pkg_info | grep tcl<p>Statistics: Posted by Guest — Wed May 15, 2002 1:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-13T05:26:00-04:00</updated>

		<published>2002-05-13T05:26:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6881#p6881</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6881#p6881"/>
		<title type="html"><![CDATA[Where does ./configure retrieve TCL version from?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6881#p6881"><![CDATA[
Ok, looks like Debian's apt-get didn't write an 8.0 tcl.h. Thanks for the reply.<br><br>I've had some major sh1t with tcl, but that's how you learn stuff, by trying to make things work <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile">. <br><p>Statistics: Posted by Guest — Mon May 13, 2002 5:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[guppy]]></name></author>
		<updated>2002-05-13T02:30:00-04:00</updated>

		<published>2002-05-13T02:30:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6880#p6880</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6880#p6880"/>
		<title type="html"><![CDATA[Where does ./configure retrieve TCL version from?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6880#p6880"><![CDATA[
why not stick with 8.3? *shrug* .. its getting it from tcl.h (sure you installed 8.0 properly?)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10">guppy</a> — Mon May 13, 2002 2:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-12T16:07:00-04:00</updated>

		<published>2002-05-12T16:07:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6871#p6871</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6871#p6871"/>
		<title type="html"><![CDATA[Where does ./configure retrieve TCL version from?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6871#p6871"><![CDATA[
checking for Tcl library... found /usr/lib/libtcl8.0.so.1<br>checking for Tcl header... found /usr/local/include/tcl.h<br>checking whether the Tcl system has changed... yes<br>checking for Tcl version... 8.3<br>checking for Tcl patch level... 8.3.4<br>checking for Tcl_Free in -ltcl8.0... no<br>checking for TclpFinalizeThreadData in -ltcl8.0... no<br><br><br>There's a clip from eggdrop 1.6.10 ./configure<br><br>I had tcl 8.3 previously, and seems there are some traces of it left on my system. This is propably causing a compile error.<br><br>Where does eggdrop look for TCL version? So I can go and remove the tcl8.3 left overs.<br><br>Thanks..<br><p>Statistics: Posted by Guest — Sun May 12, 2002 4:07 pm</p><hr />
]]></content>
	</entry>
	</feed>
