I wrote a little howto to get users compile a *completely* static eggdrop, it's not long and not hard, btw not harder than compiling the bot as usual ::)
Hope it could help.
Code: Select all
#=------------
#=- HOWTO compile an eggdrop statically
#=------------
#=- Compiling tcl 8.4
tar zxvf tcl8.4.3-src.tar.gz
cd tcl8.4.3/unix
./configure --disable-shared
make
#=- Compiling eggdrop
tar zxvf eggdrop1.6.15.tar.gz
cd eggdrop1.6.15
./configure --enable-ipv6 --with-tcllib=/path/to/tcl8.4.3/unix/libtcl8.4.a --with-tclinc=/path/to/tcl8.4.3/generic/tcl.h --enable-static
make config
make static
Gu1nn3ss 1s l33t