<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://test.amule.szerverem.hu/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eugene</id>
		<title>AMule Project FAQ - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eugene"/>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Special:Contributions/Eugene"/>
		<updated>2026-04-05T19:41:52Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:32:15Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 2=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
amule.cpp:39:30: execinfo.h: No such file or directory&lt;br /&gt;
amule.cpp:40:28: mntent.h: No such file or directory&lt;br /&gt;
In file included from /usr/local/include/cryptopp/pkcspad.h:4,&lt;br /&gt;
from /usr/local/include/cryptopp/rsa.h:9,&lt;br /&gt;
from ClientCredits.h:32,&lt;br /&gt;
from amule.cpp:86:&lt;br /&gt;
/usr/local/include/cryptopp/cryptlib.h:1358:9: warning: &amp;quot;/*&amp;quot; within comment&lt;br /&gt;
amule.cpp: In member function `virtual bool CamuleApp: nInit()':&lt;br /&gt;
amule.cpp:423: error: `setmntent' undeclared (first use this function)&lt;br /&gt;
amule.cpp:423: error: (Each undeclared identifier is reported only once for&lt;br /&gt;
each function it appears in.)&lt;br /&gt;
amule.cpp:429: error: `getmntent' undeclared (first use this function)&lt;br /&gt;
amule.cpp:431: error: invalid use of undefined type `struct mntent'&lt;br /&gt;
amule.cpp:427: error: forward declaration of `struct mntent'&lt;br /&gt;
amule.cpp:432: error: invalid use of undefined type `struct mntent'&lt;br /&gt;
amule.cpp:427: error: forward declaration of `struct mntent'&lt;br /&gt;
amule.cpp:437: error: invalid use of undefined type `struct mntent'&lt;br /&gt;
amule.cpp:427: error: forward declaration of `struct mntent'&lt;br /&gt;
amule.cpp: In member function `virtual void CamuleApp: nFatalException()':&lt;br /&gt;
amule.cpp:982: error: `backtrace' undeclared (first use this function)&lt;br /&gt;
amule.cpp:987: error: `backtrace_symbols' undeclared (first use this function)&lt;br /&gt;
gmake[2]: *** [amule-amule.o] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:31:31Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 2=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
amule.cpp:39:30: execinfo.h: No such file or directory&lt;br /&gt;
amule.cpp:40:28: mntent.h: No such file or directory&lt;br /&gt;
In file included from /usr/local/include/cryptopp/pkcspad.h:4,&lt;br /&gt;
from /usr/local/include/cryptopp/rsa.h:9,&lt;br /&gt;
from ClientCredits.h:32,&lt;br /&gt;
from amule.cpp:86:&lt;br /&gt;
/usr/local/include/cryptopp/cryptlib.h:1358:9: warning: &amp;quot;/*&amp;quot; within comment&lt;br /&gt;
amule.cpp: In member function `virtual bool CamuleApp: nInit()':&lt;br /&gt;
amule.cpp:423: error: `setmntent' undeclared (first use this function)&lt;br /&gt;
amule.cpp:423: error: (Each undeclared identifier is reported only once for&lt;br /&gt;
each function it appears in.)&lt;br /&gt;
amule.cpp:429: error: `getmntent' undeclared (first use this function)&lt;br /&gt;
amule.cpp:431: error: invalid use of undefined type `struct mntent'&lt;br /&gt;
amule.cpp:427: error: forward declaration of `struct mntent'&lt;br /&gt;
amule.cpp:432: error: invalid use of undefined type `struct mntent'&lt;br /&gt;
amule.cpp:427: error: forward declaration of `struct mntent'&lt;br /&gt;
amule.cpp:437: error: invalid use of undefined type `struct mntent'&lt;br /&gt;
amule.cpp:427: error: forward declaration of `struct mntent'&lt;br /&gt;
amule.cpp: In member function `virtual void CamuleApp: nFatalException()':&lt;br /&gt;
amule.cpp:982: error: `backtrace' undeclared (first use this function)&lt;br /&gt;
amule.cpp:987: error: `backtrace_symbols' undeclared (first use this function)&lt;br /&gt;
gmake[2]: *** [amule-amule.o] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:29:53Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:29:18Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:27:20Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
&lt;br /&gt;
gmake: *** [all] Error 2&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:26:25Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:25:32Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;[...]&amp;lt;br&amp;gt;&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&amp;lt;br&amp;gt;&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:24:47Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:24:03Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&amp;lt;br&amp;gt;&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&amp;lt;br&amp;gt;&lt;br /&gt;
gmake[2]: *** [cas] Error 1&amp;lt;br&amp;gt;&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&amp;lt;br&amp;gt;&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&amp;lt;br&amp;gt;&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&amp;lt;br&amp;gt;&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
'''&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:23:11Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
'''&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:22:02Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
'''the problem would be:'''&lt;br /&gt;
&lt;br /&gt;
[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2&lt;br /&gt;
&lt;br /&gt;
'''so we patch it now:'''&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:21:21Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
the problem would be:&lt;br /&gt;
&lt;br /&gt;
'''[...]&lt;br /&gt;
/usr/bin/ld: cannot find -lcryptopp&lt;br /&gt;
gmake[2]: *** [cas] Error 1&lt;br /&gt;
gmake[2]: Leaving directory `/home/eugene/aMule-2.0.0rc3/src'&lt;br /&gt;
gmake[1]: *** [all-recursive] Error 1&lt;br /&gt;
gmake[1]: Leaving directory `/home/eugene/aMule-2.0.0rc3'&lt;br /&gt;
gmake: *** [all] Error 2'''&lt;br /&gt;
&lt;br /&gt;
so we patch it now:&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:13:27Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =configure=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk. amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:11:33Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =configure=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to different os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk.ur amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:08:51Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch 1=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to differend os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk.ur amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''cryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-L/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -L/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:07:05Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to differend os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk.ur amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== patch 1 ==&lt;br /&gt;
&lt;br /&gt;
i dont know why, but configure found libcryptopp and adds -lcryptopp as a flag to the linker. but it does not add -I/usr/local/lib where the library is located and so it will break compilation during make&lt;br /&gt;
&lt;br /&gt;
edit src/Makefile&lt;br /&gt;
&lt;br /&gt;
search for the line containing&lt;br /&gt;
&lt;br /&gt;
''-lcryptopp''&lt;br /&gt;
&lt;br /&gt;
this line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
add ''-I/usr/local/lib'' to that line&lt;br /&gt;
&lt;br /&gt;
now the line will read as:&lt;br /&gt;
&lt;br /&gt;
''LIBS =  -I/usr/local/lib -lcryptopp''&lt;br /&gt;
&lt;br /&gt;
== patch 2 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-08T00:01:18Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =make=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to differend os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk.ur amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, use gmake&lt;br /&gt;
&lt;br /&gt;
make is bsd make, gmake is gnu make, both are not compatible&lt;br /&gt;
&lt;br /&gt;
now do:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
get urself a hot green tea (i prefer some sort of sencha) while it is compiling&lt;br /&gt;
&lt;br /&gt;
then do:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:58:37Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to differend os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk.ur amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:44:44Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =configure=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set debug or optimization flags (optional) ==&lt;br /&gt;
&lt;br /&gt;
if ur shell is tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if ur shell is bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanna change the march-type to match ur cpu. try athlon-xp or p4 or something like that :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to differend os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be different for freebsd 5.2.1 or the upcomming 5.3.&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere.&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into.&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib. dont care, its just not there and its no &amp;quot;must have&amp;quot;. just skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to wxgtk2 instead of wxgtk.ur amule will memleak and eat ur cpu. it will probably crash as well. use wxgtk as mentioned above!&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:40:25Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =configure=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set debug or optimization flags (optional) ==&lt;br /&gt;
&lt;br /&gt;
if ur shell is tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if ur shell is bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanna change the march-type to match ur cpu. try athlon-xp or p4 or something like that :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% automagically, we must help it out a bit&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, wich may differ for u a bit due to differend os or library versions u have installed&lt;br /&gt;
&lt;br /&gt;
right now this line works for FreeBSD 5.2-CURRENT 03-May-2004 for example but version numbers may be differend for freebsd 5.2.1 or the upcomming 5.3&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
u will see configure doesnt find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u get the following warning at the end of configure u are probably linking to exgtk2 instead of wxgtk, and ur amule will memleak and eat ur cpu, well it will probably crash as well. use wxgtk as mentioned above.&lt;br /&gt;
&lt;br /&gt;
''WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.''&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:32:15Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =set any optimization CFLAGS/CXXFLAGS (optional)=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set debug or optimization flags (optional) ==&lt;br /&gt;
&lt;br /&gt;
if ur shell is tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if ur shell is bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanna change the march-type to match ur cpu. try athlon-xp or p4 or something like that :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:31:44Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =set any optimization CFLAGS/CXXFLAGS (optional)=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS (optional) ==&lt;br /&gt;
&lt;br /&gt;
if ur shell is tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if ur shell is bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanna change the march-type to match ur cpu. try athlon-xp or p4 or something like that :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:29:47Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =set any optimization CFLAGS/CXXFLAGS (optional)=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS (optional) ==&lt;br /&gt;
&lt;br /&gt;
if ur shell is tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if ur shell is bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanny change the march-type :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:29:04Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =set any optimization CFLAGS/CXXFLAGS (optional)=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS (optional) ==&lt;br /&gt;
&lt;br /&gt;
tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
''setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
''export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanny change the march-type :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:28:12Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =set any optimization CFLAGS/CXXFLAGS=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS (optional) ==&lt;br /&gt;
&lt;br /&gt;
tcsh:&lt;br /&gt;
&lt;br /&gt;
''setenv CFLAGS &amp;lt;flags&amp;gt;&lt;br /&gt;
setenv CXXFLAGS &amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
bash:&lt;br /&gt;
&lt;br /&gt;
''export CFLAGS &amp;lt;flags&amp;gt;&lt;br /&gt;
export CXXFLAGS=&amp;quot;&amp;lt;flags&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
if u want a version to debug when it crashed, or to send in good bug reports flags must not contain any -O or optimization flags, but ''-g3'' instead&lt;br /&gt;
&lt;br /&gt;
for source code debugging yourself add ''-Wall'' to &amp;lt;flags&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if u want a fast optimized version, u can try the following working flags:&lt;br /&gt;
&lt;br /&gt;
''-O2 -pipe -march=athlon'' &lt;br /&gt;
&lt;br /&gt;
this compiled clean for me. u probly wanny change the march-type :-)&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T23:22:38Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =install amule 2.0.0rc3 on freebsd=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd 5.x ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gettext''&lt;br /&gt;
&lt;br /&gt;
and (but u will have this already ;-)&lt;br /&gt;
&lt;br /&gt;
''devel/gmake''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know. in case ur very new to freebsd, consult the great handbook at www.freebsd.org.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' if u think u have wxgtk installed because u see wxgtk2, u should know, wxgtk is linked to gtk1 and wxgtk2 is linked to gtk2. wxgtk2 and amule will be unstable! u have to use wxgtk, not wxgtk2!&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:27:41Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =patch=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk-common''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have ''gettext'' installed, else maybe u have to do some small changes to the configure line (see ''./configure --help'')&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i placed it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:27:09Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =configure=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk-common''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have ''gettext'' installed, else maybe u have to do some small changes to the configure line (see ''./configure --help'')&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule be instable, use so much cpu and ram. You have been advised, dont report bugs so.&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:25:56Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =configure=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk-common''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have ''gettext'' installed, else maybe u have to do some small changes to the configure line (see ''./configure --help'')&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''-- cut --''&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''-- cut --''&lt;br /&gt;
&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:22:44Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =install ports we need if u dont allready have (see ''pkg_info'')=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
''x11-toolkits/wxgtk-common''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have ''gettext'' installed, else maybe u have to do some small changes to the configure line (see ''./configure --help'')&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''[...]&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:21:55Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: =install ports we need if u dont allready have (see ''pkg_info'')=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp''&lt;br /&gt;
''x11-toolkits/wxgtk-common''&lt;br /&gt;
&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have ''gettext'' installed, else maybe u have to do some small changes to the configure line (see ''./configure --help'')&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''[...]&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:19:25Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp&lt;br /&gt;
x11-toolkits/wxgtk-common&lt;br /&gt;
''&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have gettext installed, else maybe u have to do some small changes to the configure line (see ./configure --help)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''[...]&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:18:19Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1. install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp&lt;br /&gt;
x11-toolkits/wxgtk-common&lt;br /&gt;
''&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have gettext installed, else maybe u have to do some small changes to the configure line (see ./configure --help)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 2. set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 3. configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''[...]&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 4. patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 5. make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 6. use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:16:53Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== install amule 2.0.0rc3 on freebsd ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.) install ports we need if u dont allready have (see ''pkg_info'') ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp&lt;br /&gt;
x11-toolkits/wxgtk-common&lt;br /&gt;
''&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have gettext installed, else maybe u have to do some small changes to the configure line (see ./configure --help)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 2.) set any optimization CFLAGS/CXXFLAGS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 3.) configure ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''[...]&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 4.) patch ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 5. make ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 6. use it ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2004-05-07T22:14:34Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;maybe this page outdates soon,&lt;br /&gt;
until then it may help u&lt;br /&gt;
&lt;br /&gt;
[[install amule 2.0.0rc3 on freebsd]]&lt;br /&gt;
&lt;br /&gt;
why would u ask... we have /usr/ports/net/amule&lt;br /&gt;
&lt;br /&gt;
well, this is the stable version 1.2.6&lt;br /&gt;
&lt;br /&gt;
we wanna stay current or help testing / debugging, why else would u read this?&lt;br /&gt;
&lt;br /&gt;
[[1.) install ports we need if u dont allready have (see pkg_info)]]&lt;br /&gt;
&lt;br /&gt;
''security/cryptopp&lt;br /&gt;
x11-toolkits/wxgtk-common&lt;br /&gt;
''&lt;br /&gt;
u know how to install ports as a bsd user, so i dont have to tell u i hope.&lt;br /&gt;
its just too easy u know.&lt;br /&gt;
&lt;br /&gt;
and i suggest u have gettext installed, else maybe u have to do some small changes to the configure line (see ./configure --help)&lt;br /&gt;
&lt;br /&gt;
[[2.) set any optimization CFLAGS/CXXFLAGS]]&lt;br /&gt;
&lt;br /&gt;
i only tested with &amp;quot;''-O2 -pipe -march=athlon''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
-O3 or any other flags may not work for u, i completely dont know.&lt;br /&gt;
&lt;br /&gt;
if u want a debug version, not a user version, dont use any -O, instead turn on &amp;quot;-Wall -g3&amp;quot;... but as with the -O3 i didnt test and so i dont know if it will work.&lt;br /&gt;
&lt;br /&gt;
[[3.) configure]]&lt;br /&gt;
&lt;br /&gt;
the ./configure does not work 100% auto, we must help it&lt;br /&gt;
&lt;br /&gt;
i used the following line of configure, and i hope it may help u:&lt;br /&gt;
&lt;br /&gt;
edit the &amp;lt;your home&amp;gt; tag of course, or install it elsewhere...&lt;br /&gt;
&lt;br /&gt;
''./configure --prefix=/home/&amp;lt;your home&amp;gt;/amule --with-wx-config=/usr/X11R6/bin/wxgtk2-2.4-config --with-wxbase-config=/usr/X11R6/bin/wxgtk2-2.4-config''&lt;br /&gt;
&lt;br /&gt;
this is one single line, not 3 lines or whatever wiki/html/ur browser wraps this line into...&lt;br /&gt;
&lt;br /&gt;
well if u have other versions installed u need to change the line a bit, im driving a very current version right now, FreeBSD 5.2-CURRENT 03-May-2004&lt;br /&gt;
&lt;br /&gt;
u will see configure doenst find gdlib-config, even if u unstalled gdlib, dont care, its just not there, but ist no &amp;quot;must have&amp;quot;. skip it.&lt;br /&gt;
&lt;br /&gt;
skip the other warnings as well, esp. the end of configure:&lt;br /&gt;
&lt;br /&gt;
''[...]&lt;br /&gt;
 Which libraries should aMule use?&lt;br /&gt;
wxWidgets 2.4.2&lt;br /&gt;
GTK Not detected&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WARNING!! Your wxWidgets copy has been linked against GTK2 and this will make aMule&lt;br /&gt;
be instable, use so much cpu and ram. You have been advised, don't report bugs so.&lt;br /&gt;
''&lt;br /&gt;
its just alright!&lt;br /&gt;
&lt;br /&gt;
[[4.) patch]]&lt;br /&gt;
&lt;br /&gt;
as there is no official freebsd support in amule yet?! we will patch it to work... well there is openbsd support and this support will work for us too :-)&lt;br /&gt;
&lt;br /&gt;
edit src/amule.cpp&lt;br /&gt;
&lt;br /&gt;
and insert&lt;br /&gt;
&lt;br /&gt;
''#define __OPENBSD__''&lt;br /&gt;
&lt;br /&gt;
at the top of this file. i plced it right before the first #include line...&lt;br /&gt;
&lt;br /&gt;
what a workaround u may scream. hey we dont fiddle too much around with the code, just hack it to work and get ready to share ;-)&lt;br /&gt;
&lt;br /&gt;
'''5. make'''&lt;br /&gt;
&lt;br /&gt;
make will fail, due to the bsd make is not compatible with gnu make and amule does not care yet, anyways...&lt;br /&gt;
&lt;br /&gt;
install gnu make if u dont already have&lt;br /&gt;
its placed: ''/usr/ports/devel/gmake/''&lt;br /&gt;
&lt;br /&gt;
then all u have to do is:&lt;br /&gt;
&lt;br /&gt;
''gmake''&lt;br /&gt;
&lt;br /&gt;
now it should compile&lt;br /&gt;
&lt;br /&gt;
then u do, of course:&lt;br /&gt;
&lt;br /&gt;
''gmake install''&lt;br /&gt;
&lt;br /&gt;
'''6. use it'''&lt;br /&gt;
&lt;br /&gt;
just start it with ''/home/&amp;lt;your home&amp;gt;/amule/bin/amule''&lt;br /&gt;
or whereever u installed it to...&lt;br /&gt;
&lt;br /&gt;
have phun&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/User:Eugene</id>
		<title>User:Eugene</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/User:Eugene"/>
				<updated>2004-05-07T21:41:35Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;im new to amule, but i help where i can.&lt;br /&gt;
&lt;br /&gt;
i love emule and i love freebsd so i see support for amule is important, because i wanna use my pref. os with my pref. appz&lt;br /&gt;
&lt;br /&gt;
i dont know much, but some of my not so bad skills:&lt;br /&gt;
&lt;br /&gt;
bsd (pref. freebsd) / linux (pref. gentoo) , but have a sun ultra5 too (but running gentoo linux, not solaris, mainly)... i know what the source does ;-)&lt;br /&gt;
&lt;br /&gt;
assembler, c, java&lt;br /&gt;
&lt;br /&gt;
hacking&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/User:Eugene</id>
		<title>User:Eugene</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/User:Eugene"/>
				<updated>2004-05-07T21:38:58Z</updated>
		
		<summary type="html">&lt;p&gt;Eugene: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;im new to amule, but i help where i can.&lt;br /&gt;
&lt;br /&gt;
i love emule and i love freebsd so i see support for amule is important, because i wanna use my pref. os with my pref. appz&lt;br /&gt;
&lt;br /&gt;
i dont know much, but some of my not so bad skills:&lt;br /&gt;
&lt;br /&gt;
*bsd (pref. freebsd) / linux (pref. gentoo) , but have a sun ultra5 too (but gentoo linux, not solaris mainly)&lt;br /&gt;
&lt;br /&gt;
assembler, c, java&lt;br /&gt;
&lt;br /&gt;
hacking/networking&lt;br /&gt;
&lt;br /&gt;
Eugene&lt;/div&gt;</summary>
		<author><name>Eugene</name></author>	</entry>

	</feed>