EggDrop compile error with "lush.h"

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
^rooker
Site Admin
Posts: 1481
Joined: Fri Aug 29, 2003 8:39 pm

EggDrop compile error with "lush.h"

Post by ^rooker »

[PROBLEM]
When trying to compile EggDrop, "make" exits with this error:
lush.h:4:13: /: No such file or directory


When looking at "lush.h", there's just a single line of code:

Code: Select all

#include "/";

[SOLUTION]
Since "lush.h" is generated dynamically by "configure", this error means that the "tclinc" path is not understood correctly, which might be caused by "tcllib" path not being provided as expected.

The "configure" script isn't happy when you provide just a path with "--with-tcllib" and "--with-tclinc", but it expects path AND filename like this:

Code: Select all

--with-tcllib=/usr/lib/libtcl8.4.so
--with-tclinc=/usr/include/tcl.h
Post Reply