ive tried both .16 an .17 by doing:
patch -p1 <../eggdrop1.6.16-ssl.diff
./configure --with-ssl=/usr/local/ssl
make iconfig (also ive tried make config)
make
then i always get..
gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H -c dcc.c
dcc.c:38:25: openssl/md5.h: No such file or directory
dcc.c: In function `dcc_bot_digest':
dcc.c:302: `MD5_CTX' undeclared (first use in this function)
dcc.c:302: (Each undeclared identifier is reported only once
dcc.c:302: for each function it appears in.)
dcc.c:302: parse error before "md5context"
dcc.c:307: warning: implicit declaration of function `MD5_Init'
dcc.c:307: `md5context' undeclared (first use in this function)
dcc.c:308: warning: implicit declaration of function `MD5_Update'
dcc.c:310: warning: implicit declaration of function `MD5_Final'
dcc.c: In function `dcc_bot_check_digest':
dcc.c:508: `MD5_CTX' undeclared (first use in this function)
dcc.c:508: parse error before "md5context"
dcc.c:517: `md5context' undeclared (first use in this function)
make[1]: *** [dcc.o] Error 1
make[1]: Leaving directory `/home/b/eggdrop1.6.16/src'
make: *** [modegg] Error 2
locate md5.h
/usr/local/ssl/include/openssl/md5.h
its also at src/md5/md5.h
Makefile paths are:
XSSL_LIBS = -lssl -lcrypto -L/usr/local/ssl/lib -L/usr/local/ssl/lib
XSSL_INCLUDE = /usr/local/ssl/include
All the paths look right to me so any help on what im doing wrong would be appreciated. thanks.