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.

What i do wrong ?

Old posts that have not been replied to for several years.
Locked
S
Solaris

Post by Solaris »

If i say make the i see this Error !

VECTRA# make
(This may take a while. Go get some runts.)
gcc -pipe -g -O2 -I.. -I.. -DHAVE_CONFIG_H -c ./bg.c
In file included from ../lush.h:3,
from main.h:59,
from ./bg.c:27:
/usr/local/include/tcl8.4/tcl.h:2157: tclPlatDecls.h: No such file or directory
*** Error code 1

Stop in /usr/src/eggdrop1.6.8/src.
*** Error code 1

Stop in /usr/src/eggdrop1.6.8.
VECTRA#

Please Help me
User avatar
z_one
Master
Posts: 269
Joined: Mon Jan 14, 2002 8:00 pm
Location: Canada

Post by z_one »

/usr/local/include/tcl8.4/tcl.h:2157: tclPlatDecls.h: No such file or directory
seems to me there are missing files (.h as in header file extension) in the TCL version installed on your server. You might want to check with your server admin. about that.

<font size=-1>[ This Message was edited by: z_one on 2002-03-01 03:16 ]</font>
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

its the tcl8.4 script that still messed up.

either 'ln -s /usr/local/include/tcl8.4/generic/tclPlatDecls.h /usr/local/include/tcl8.4/tclPlatDecls.h' as root, or './configure --with-tclinc=/usr/local/include/tcl8.4/generic/tcl.h --with-tcllib=/usr/local/lib/libtcl8.4.so' (or libtcl8.4.a if you want it statically linked into the binary) when compiling eggdrop.
Locked