<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/8284" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2004-10-04T21:34:12-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/8284</id>

		<entry>
		<author><name><![CDATA[TurboChicken]]></name></author>
		<updated>2004-10-04T21:34:12-04:00</updated>

		<published>2004-10-04T21:34:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=41558#p41558</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=41558#p41558"/>
		<title type="html"><![CDATA[trouble with SSL patching .16 and .17 missing openssl/md5.h]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=41558#p41558"><![CDATA[
glad i could help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5488">TurboChicken</a> — Mon Oct 04, 2004 9:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-10-02T02:46:32-04:00</updated>

		<published>2004-10-02T02:46:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=41494#p41494</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=41494#p41494"/>
		<title type="html"><![CDATA[trouble with SSL patching .16 and .17 missing openssl/md5.h]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=41494#p41494"><![CDATA[
First i want to thank TurboChicken for his post.<br><a href="http://forum.egghelp.org/viewtopic.php?t=8365" class="postlink">http://forum.egghelp.org/viewtopic.php?t=8365</a><br><br>The solution to my problem is:<br><br>cd eggdrop1.6.17<br>mkdir openssl<br>cd openssl<br>cp /usr/local/ssl/include/openssl/* .<br><br>I also had to change the line in my makefile:<br>XSSL_INCLUDE = -L/usr/local/ssl/include<br><br>(added the -L)<br><br>basically you have to trick it. I tried changing the paths in the patch and such but this is the easiest way.<p>Statistics: Posted by Guest — Sat Oct 02, 2004 2:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-09-19T19:39:15-04:00</updated>

		<published>2004-09-19T19:39:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=41024#p41024</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=41024#p41024"/>
		<title type="html"><![CDATA[trouble with SSL patching .16 and .17 missing openssl/md5.h]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=41024#p41024"><![CDATA[
Same trouble here with .17, tried with this alternate method (read it could help somewhere) :<br><br>specified --with-ssl=/openssl (which is the install dir but without 'make install' to keep the headers in the install dir)<br><br>any1 found a workaround ?<p>Statistics: Posted by Guest — Sun Sep 19, 2004 7:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-09-12T14:18:56-04:00</updated>

		<published>2004-09-12T14:18:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40860#p40860</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40860#p40860"/>
		<title type="html"><![CDATA[trouble with SSL patching .16 and .17 missing openssl/md5.h]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40860#p40860"><![CDATA[
ive tried both .16 an .17 by doing:<br><br>patch -p1 &lt;../eggdrop1.6.16-ssl.diff<br>./configure --with-ssl=/usr/local/ssl<br>make iconfig (also ive tried make config)<br>make<br><br>then i always get.. <br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c dcc.c<br>dcc.c:38:25: openssl/md5.h: No such file or directory<br>dcc.c: In function `dcc_bot_digest':<br>dcc.c:302: `MD5_CTX' undeclared (first use in this function)<br>dcc.c:302: (Each undeclared identifier is reported only once<br>dcc.c:302: for each function it appears in.)<br>dcc.c:302: parse error before "md5context"<br>dcc.c:307: warning: implicit declaration of function `MD5_Init'<br>dcc.c:307: `md5context' undeclared (first use in this function)<br>dcc.c:308: warning: implicit declaration of function `MD5_Update'<br>dcc.c:310: warning: implicit declaration of function `MD5_Final'<br>dcc.c: In function `dcc_bot_check_digest':<br>dcc.c:508: `MD5_CTX' undeclared (first use in this function)<br>dcc.c:508: parse error before "md5context"<br>dcc.c:517: `md5context' undeclared (first use in this function)<br>make[1]: *** [dcc.o] Error 1<br>make[1]: Leaving directory `/home/b/eggdrop1.6.16/src'<br>make: *** [modegg] Error 2<br><br><br>locate md5.h<br>/usr/local/ssl/include/openssl/md5.h<br><br>its also at src/md5/md5.h<br><br>Makefile paths are:<br>XSSL_LIBS = -lssl -lcrypto -L/usr/local/ssl/lib -L/usr/local/ssl/lib<br>XSSL_INCLUDE = /usr/local/ssl/include<br><br>All the paths look right to me so any help on what im doing wrong would be appreciated. thanks.<p>Statistics: Posted by Guest — Sun Sep 12, 2004 2:18 pm</p><hr />
]]></content>
	</entry>
	</feed>
