This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post . Click the X in the top right-corner of this box to dismiss this message.
General support and discussion of Eggdrop bots.
qazwsx
Voice
Posts: 3 Joined: Thu Jun 25, 2009 12:22 am
Contact:
Post
by qazwsx » Thu Jun 25, 2009 12:24 am
The eggdrop connects to the server and enters the channel when I use -n for debug mode but when I run it normally it just says it's loaded and it doesn't connect I am not sure what is going on.
username
Op
Posts: 196 Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:
Post
by username » Thu Jun 25, 2009 12:48 am
Open
src/config.h in sources of your bot. After
./configure - open file
config.h . Change next 2 lines:
Code: Select all
/* Define for Tcl that has threads. */
/* #undef HAVE_TCL_THREADS */
to this:
Code: Select all
/* Define for Tcl that has threads. */
#define HAVE_TCL_THREADS 1
Continue installing your bot with
make config &&
make &&
make install .
qazwsx
Voice
Posts: 3 Joined: Thu Jun 25, 2009 12:22 am
Contact:
Post
by qazwsx » Thu Jun 25, 2009 12:51 am
theres no config.h in src but there is in the parent directory is it that one?
qazwsx
Voice
Posts: 3 Joined: Thu Jun 25, 2009 12:22 am
Contact:
Post
by qazwsx » Thu Jun 25, 2009 1:06 am
That worked thanks for the help I appreciate it
atze
Voice
Posts: 2 Joined: Tue Jul 14, 2009 4:04 pm
Post
by atze » Tue Jul 14, 2009 4:08 pm
I have the same problem. I set #define HAVE_TCL_THREADS 1 but the behavior is the same.
nml375
Revered One
Posts: 2860 Joined: Fri Aug 04, 2006 2:09 pm
Post
by nml375 » Tue Jul 14, 2009 4:44 pm
@atze:
Could you please provide information regarding version of eggdrop and libtcl.
NML_375
atze
Voice
Posts: 2 Joined: Tue Jul 14, 2009 4:04 pm
Post
by atze » Tue Jul 14, 2009 6:16 pm
eggdrop 1.6.19+ctcp patch
debian etch, using tcl8.5-dev.deb from lenny.
I missed that the in config.h it was commented as #undef i changed it to #define, now it seems to work.
i used before a source install of tcl8.5 and dont have to do this.
sorry i missed that part completely, but thx for your help
nml375
Revered One
Posts: 2860 Joined: Fri Aug 04, 2006 2:09 pm
Post
by nml375 » Tue Jul 14, 2009 6:19 pm
@atze:
Then you are (were) suffering from the known issue of threaded libtcl8.5 not properly being detected as threaded. I believe a fix is in the works, but for now the best approach is to manually edit config.h before the build-phase.
NML_375