orkim / dh1080_tcl

DH1080_tcl.so for eggdrop bots
1 stars 5 forks source link

missing ssl library link flag #1

Closed iknowmarkers closed 7 years ago

iknowmarkers commented 7 years ago

the last lines in the make file are missing the needed library ssl gcc -static -shared DH1080_tcl.o DH1080.o base64.o -o DH1080_tcl.so should be gcc -static -shared DH1080_tcl.o DH1080.o base64.o -lssl -lcrypto -o DH1080_tcl.so DH1080.c includes a openssl header file named sha.h which makes openssl library required for this plugin to work

orkim commented 7 years ago

Thank you! Updates pushed.