mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
systems. Despite the name, it does run on other platforms beside Linux. Linuxdcpp uses the gtk2 toolkit. WWW: http://linuxdcpp.berlios.de/
34 lines
751 B
Text
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;
|
|
}
|
|
|