News | Compiling | Downloads | FAQ | Links |
Download and install Cygwin,
with the default base packages and the following additional packages:
-autoconf
-automake
-binutils
-gcc
-make
-openssl
-openssl-devel
For compression module
-zlib
Make sure the default Tcl version include with Cygwin isn't installed.
Open the Cygwin Bash Shell
Download and install Tcl
8.5.11 (1.55MB), just extract file to root directory
cd /
tar -zxf tcl-8.5.11.tar.gz
Download eggdrop 1.8.0 CVS source code from Eggheads
Download eggdrop 1.8.0 patch (02/08/2013)
Extract eggdrop source code
tar -zxf eggdrop1.8-snapshot.tar.gz
Apply patch in the eggdrop source code directory
patch -p0 < eggdrop1.8.0.patch
Configure the eggdrop source code
./configure --enable-strip
Configure the eggdrop modules
make config
Or configure the modules manually to choose exactly which modules you want to
compile (By default all except woobie module are enabled)
make iconfig
Make the modules and the eggdrop itself
make eggdrop
Install the eggdrop
make install DEST=C:/eggdrop/
Remove symbolic links
cd c:/eggdrop/
rm modules
rm eggdrop.exe
mv eggdrop.exe-1.8.0 eggdrop.exe
mv modules-1.8.0 modules
Copy Cygwin and TCL dll files to eggdrop directory
cp /bin/cygcrypto-0.9.8.dll C:/eggdrop
cp /bin/cyggcc_s-1.dll C:/eggdrop
cp /bin/cygssl-0.9.8.dll C:/eggdrop
cp /bin/cygwin1.dll C:/eggdrop
cp /usr/local/bin/libtcl8.5.dll C:/eggdrop
Copy the TCL libraries
mkdir C:/eggdrop/lib
cp -r /usr/local/lib/tcl C:/eggdrop/lib
cp -r /usr/local/lib/tcl8.5 C:/eggdrop/lib
Only needed for the compression module
cp /bin/cygz.dll C:/eggdrop