<?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/17059" />

	<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>2009-08-17T13:32:20-04:00</updated>

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

		<entry>
		<author><name><![CDATA[thommey]]></name></author>
		<updated>2009-08-17T13:32:20-04:00</updated>

		<published>2009-08-17T13:32:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89934#p89934</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89934#p89934"/>
		<title type="html"><![CDATA[eggdrop-1.6.19-ssl-rootie.patch make errors]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89934#p89934"><![CDATA[
It's not really important. You can ignore the patch.h rejection error.<br><br>Patch.h is only responsible for generating the version number as in:<br>eggdrop1.6.19<strong class="text-strong">+ssl+ipv6</strong><br><br>Nothing else. You can add the tag missing manually if you want to, the file is trivial to understand. But it's not required.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9830">thommey</a> — Mon Aug 17, 2009 1:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ttraxx]]></name></author>
		<updated>2009-08-10T08:16:36-04:00</updated>

		<published>2009-08-10T08:16:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89824#p89824</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89824#p89824"/>
		<title type="html"><![CDATA[eggdrop-1.6.19-ssl-rootie.patch make errors]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89824#p89824"><![CDATA[
Got exact the same error here.<br><br>Hunk #1 failed at 32. <br>1 out of 1 hunks failed--saving rejects to src/patch.h.rej<br><br>Any solution to get around this ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10802">ttraxx</a> — Mon Aug 10, 2009 8:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MrStatic]]></name></author>
		<updated>2009-08-03T04:42:28-04:00</updated>

		<published>2009-08-03T04:42:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89728#p89728</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89728#p89728"/>
		<title type="html"><![CDATA[eggdrop-1.6.19-ssl-rootie.patch make errors]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89728#p89728"><![CDATA[
I started out by downloading eggdrop1.6.19+ctcpfix.tar.gz. I ./configure, make config, make, make install. No issues. Now I go to apply the patch. <br><br>I get <blockquote class="uncited"><div>Hmm...  The next patch looks like a unified diff to me...<br>The text leading up to this was:<br>--------------------------<br>|--- src/patch.h        2008-04-19 06:21:20.000000000 +0200<br>|+++ src/patch.h        2008-04-19 11:29:55.000000000 +0200<br>--------------------------<br>Patching file src/patch.h using Plan A...<br>Hunk #1 failed at 32.<br>1 out of 1 hunks failed--saving rejects to src/patch.h.rej</div></blockquote>patch.h.rej reads as follows<blockquote class="uncited"><div>***************<br>*** 32,42 ****<br>   */<br>  #ifndef _EGG_PATCH_H<br>  #define _EGG_PATCH_H<br>- /*<br>-  *<br>-  *<br>-  */<br>- /* PATCH GOES HERE */<br>  /*<br>   *<br>   *<br>--- 32,40 ----<br>   */<br>  #ifndef _EGG_PATCH_H<br>  #define _EGG_PATCH_H<br>+ #ifdef EGG_SSL_EXT<br>+ patch("SSL");<br>+ #endif<br>  /*<br>   *<br>   *</div></blockquote>So I hand edited that in with pico. I goto 'make' and I get<blockquote class="uncited"><div>This may take a while. Go get some runts.<br><br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c bg.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c botcmd.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c botmsg.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c botnet.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c chanprog.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c cmds.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c dcc.c<br>In file included from dcc.c:36:<br>md5/md5.h:8:23: ../config.h: No such file or directory<br>*** Error code 1</div></blockquote>So I assume they mean /home/user/config.h So I edit the md5.h direcly to that instead of ..config.h <br><br>Which appears to work at first then<br><blockquote class="uncited"><div>This may take a while. Go get some runts.<br><br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c dcc.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c dccutil.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c dns.c<br>dns.c: In function `display_dcc_dnswait':<br>dns.c:67: warning: long int format, time_t arg (arg 3)<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c flags.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c language.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c match.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H    '-DCCFLAGS="gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H  "'  '-DLDFLAGS="gcc -pipe"'  '-DSTRIPFLAGS="touch"' -c ./main.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c mem.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c misc.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c misc_file.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c modules.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c net.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c rfc1459.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c tcl.c<br>tcl.c: In function `readtclprog':<br>tcl.c:746: warning: assignment discards qualifiers from pointer target type<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c tcldcc.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c tclhash.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c tclmisc.c<br>tclmisc.c: In function `tcl_unixtime':<br>tclmisc.c:386: warning: long int format, time_t arg (arg 4)<br>tclmisc.c:386: warning: long int format, time_t arg (arg 4)<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c tcluser.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c userent.c<br>userent.c: In function `del_entry_type':<br>userent.c<img alt=":1141:" class="emoji smilies" draggable="false" src="//cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1141.svg"> warning: dereferencing type-punned pointer will break strict-aliasing rules<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c userrec.c<br>gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H   -c users.c<br>gcc -pipe -g -O2 -Wall -I. -I../.. -I../.. -I../../src -DHAVE_CONFIG_H   -c md5c.c<br>md5c.c:28: error: redefinition of typedef 'MD5_u32plus'<br>md5.h:16: error: previous declaration of 'MD5_u32plus' was here<br>md5c.c:35: error: conflicting types for 'MD5_CTX'<br>md5.h:23: error: previous declaration of 'MD5_CTX' was here<br>md5c.c:192: error: conflicting types for 'MD5_Init'<br>md5.h:25: error: previous declaration of 'MD5_Init' was here<br>md5c.c:192: error: conflicting types for 'MD5_Init'<br>md5.h:25: error: previous declaration of 'MD5_Init' was here<br>md5c.c:203: error: conflicting types for 'MD5_Update'<br>md5.h:26: error: previous declaration of 'MD5_Update' was here<br>md5c.c:203: error: conflicting types for 'MD5_Update'<br>md5.h:26: error: previous declaration of 'MD5_Update' was here<br>md5c.c:237: error: conflicting types for 'MD5_Final'<br>md5.h:27: error: previous declaration of 'MD5_Final' was here<br>md5c.c:237: error: conflicting types for 'MD5_Final'<br>md5.h:27: error: previous declaration of 'MD5_Final' was here<br>*** Error code 1<br><br>Stop in /usr/home/mrstatic/eggdrop1.6.19/src/md5.<br>*** Error code 1</div></blockquote>Any help would be appreciated.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9893">MrStatic</a> — Mon Aug 03, 2009 4:42 am</p><hr />
]]></content>
	</entry>
	</feed>
