ports/net-p2p/linuxdcpp/files/patch-disable_binreloc
Jeremy Messenger ded61394ac Linuxdcpp is a port of the win32 DC++ direct connect client to POSIX-like
systems. Despite the name, it does run on other platforms beside Linux.
Linuxdcpp uses the gtk2 toolkit.

WWW: http://linuxdcpp.berlios.de/
2006-07-29 17:46:11 +00:00

34 lines
751 B
Text

--- linux/SConstruct.orig Sun Jul 16 11:25:22 2006
+++ linux/SConstruct Sun Jul 16 11:25:57 2006
@@ -8,7 +8,6 @@
'hashdialog.cc',
'hub.cc',
'mainwindow.cc',
- 'prefix.cc',
'privatemessage.cc',
'publichubs.cc',
'search.cc',
--- linux/wulformanager.cc.orig Sun Jul 16 11:25:32 2006
+++ linux/wulformanager.cc Sun Jul 16 11:26:29 2006
@@ -17,7 +17,6 @@
*/
#include "wulformanager.hh"
-#include "prefix.hh"
#include "publichubs.hh"
#include "downloadqueue.hh"
#include "hub.hh"
@@ -230,13 +229,7 @@
string WulforManager::getPath()
{
-#ifdef _DATADIR
string ret = string(_DATADIR) + PATH_SEPARATOR_STR + "ldcpp";
-#else
- char *temp = br_extract_dir(SELFPATH);
- string ret = string(temp);
- free(temp);
-#endif
return ret;
}