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.

eggdrop 1.6.20 install problem

General support and discussion of Eggdrop bots.
Post Reply
A
AlIt0
Voice
Posts: 11
Joined: Wed Apr 14, 2010 8:09 am

eggdrop 1.6.20 install problem

Post by AlIt0 »

ello, when write command bots @ irc: ~ / eggdrop1.6.20 $ make
make [1]: Entering directory `/ home/bots/eggdrop1.6.20/src '

This may take a while. Go get some runts.

gcc-g-O2-pipe-Wall-I .. -I .. -DHAVE_CONFIG_H-c tcl.c
tcl.c: In function 'init_tcl':
tcl.c: 698: error: 'Tcl_NotifierProcs' has no member named 'initNotifierProc'
tcl.c: 703: error: 'Tcl_NotifierProcs' has no member named 'finalizeNotifierProc'
make [1]: *** [tcl.o] Error 1
make [1]: Leaving directory `/ home/bots/eggdrop1.6.20/src '
make: *** [modegg] Error 2


Here the error occurs, how can I fix it
t
thommey
Halfop
Posts: 76
Joined: Tue Apr 01, 2008 2:59 pm

Post by thommey »

That's a bug.

The quick workaround is to open config.h in a text editor, change (around line 282)

Code: Select all

/* Define for Tcl that has Tcl_SetNotifier() (8.2b1 and later). */
#define HAVE_TCL_SETNOTIFIER 1
into

Code: Select all

/* Define for Tcl that has Tcl_SetNotifier() (8.2b1 and later). */
#undef HAVE_TCL_SETNOTIFIER
.

Then, "make" again - do not ./configure or you'll have to do it again.
Post Reply