| View previous topic :: View next topic |
| Author |
Message |
AlIt0 Voice
Joined: 14 Apr 2010 Posts: 11
|
Posted: Tue Aug 10, 2010 7:33 am Post subject: eggdrop 1.6.20 install problem |
|
|
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 |
|
| Back to top |
|
 |
thommey Halfop
Joined: 01 Apr 2008 Posts: 73
|
Posted: Tue Aug 10, 2010 8:42 am Post subject: |
|
|
That's a bug.
The quick workaround is to open config.h in a text editor, change (around line 282)
| Code: |
/* Define for Tcl that has Tcl_SetNotifier() (8.2b1 and later). */
#define HAVE_TCL_SETNOTIFIER 1
|
into
| Code: |
/* 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. |
|
| Back to top |
|
 |
|