diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-04-22 20:34:52 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-04-22 20:34:52 +0000 |
commit | 5fd5069620275cbcea73dbcbdb343d19d9aaac9a (patch) | |
tree | 283cf8b78ba05a812955a68bee34f638d9ccd590 /net/xmule/files | |
parent | 5a4dffb552ae86281a997af67a8c5c272e376832 (diff) |
Notes
Diffstat (limited to 'net/xmule/files')
-rw-r--r-- | net/xmule/files/patch-Makefile.in | 13 | ||||
-rw-r--r-- | net/xmule/files/patch-configure | 2 | ||||
-rw-r--r-- | net/xmule/files/patch-src::CFile.cpp | 26 | ||||
-rw-r--r-- | net/xmule/files/patch-src::PPgDirectories.cpp | 25 | ||||
-rw-r--r-- | net/xmule/files/patch-src::PartFile.cpp | 25 | ||||
-rw-r--r-- | net/xmule/files/patch-src::Preferences.cpp | 25 | ||||
-rw-r--r-- | net/xmule/files/patch-src::ServerList.cpp | 25 | ||||
-rw-r--r-- | net/xmule/files/patch-src::SharedFileList.cpp | 24 | ||||
-rw-r--r-- | net/xmule/files/patch-src::UDPSocket.cpp | 29 | ||||
-rw-r--r-- | net/xmule/files/patch-src::wx::Makefile.in | 13 | ||||
-rw-r--r-- | net/xmule/files/patch-src::wx::xrc::Makefile.in | 13 |
11 files changed, 1 insertions, 219 deletions
diff --git a/net/xmule/files/patch-Makefile.in b/net/xmule/files/patch-Makefile.in deleted file mode 100644 index c59fb39c3956..000000000000 --- a/net/xmule/files/patch-Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig Sun Mar 30 20:47:49 2003 -+++ Makefile.in Sun Mar 30 20:48:01 2003 -@@ -70,8 +70,10 @@ - BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ - CATOBJEXT = @CATOBJEXT@ - CC = @CC@ -+CFLAGS = @CFLAGS@ - CPP = @CPP@ - CXX = @CXX@ -+CXXFLAGS = @CXXFLAGS@ - DATADIRNAME = @DATADIRNAME@ - DEPDIR = @DEPDIR@ - DISABLE_PROGRESS = @DISABLE_PROGRESS@ diff --git a/net/xmule/files/patch-configure b/net/xmule/files/patch-configure index d6a4608344df..a0cca454fc69 100644 --- a/net/xmule/files/patch-configure +++ b/net/xmule/files/patch-configure @@ -1,6 +1,6 @@ --- configure.orig Sat Mar 29 14:13:57 2003 +++ configure Sat Mar 29 14:14:04 2003 -@@ -1704,8 +1704,6 @@ +@@ -1710,8 +1710,6 @@ # Checks for programs. # hopefully this prevents -O2 diff --git a/net/xmule/files/patch-src::CFile.cpp b/net/xmule/files/patch-src::CFile.cpp deleted file mode 100644 index 9a93a9788987..000000000000 --- a/net/xmule/files/patch-src::CFile.cpp +++ /dev/null @@ -1,26 +0,0 @@ ---- src/CFile.cpp.orig Sun Mar 23 00:13:37 2003 -+++ src/CFile.cpp Sun Mar 23 00:16:34 2003 -@@ -53,6 +53,10 @@ - #define NOMCX - #endif - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - #elif (defined(__UNIX__) || defined(__GNUWIN32__)) - #include <unistd.h> - #ifdef __GNUWIN32__ -@@ -116,7 +120,11 @@ - #endif - - #ifndef MAX_PATH -- #define MAX_PATH 512 -+# if (defined(BSD) && (BSD >= 199103)) -+# define MAX_PATH MAXPATHLEN -+# else -+# define MAX_PATH 512 -+# endif - #endif - - // some broken compilers don't have 3rd argument in open() and creat() diff --git a/net/xmule/files/patch-src::PPgDirectories.cpp b/net/xmule/files/patch-src::PPgDirectories.cpp deleted file mode 100644 index 62e2220c31e3..000000000000 --- a/net/xmule/files/patch-src::PPgDirectories.cpp +++ /dev/null @@ -1,25 +0,0 @@ ---- src/PPgDirectories.cpp.orig Sun Mar 23 00:10:03 2003 -+++ src/PPgDirectories.cpp Sun Mar 23 00:10:42 2003 -@@ -1,6 +1,10 @@ - // PPgDirectories.cpp : implementation file - // - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - //#include "stdafx.h" - #include "wintypes.h" - #include "emule.h" -@@ -13,7 +17,11 @@ - #include "wx/xrc/xmlres.h" - #include "wx/xrc/xh_all.h" - -+#if (defined(BSD) && (BSD >= 199103)) -+#define MAX_PATH MAXPATHLEN -+#else - #define MAX_PATH 2048 -+#endif - - #define GetDlgItem(x,clas) XRCCTRL(*this,#x,clas) - #define IsDlgButtonChecked(x) XRCCTRL(*this,#x,wxCheckBox)->GetValue() diff --git a/net/xmule/files/patch-src::PartFile.cpp b/net/xmule/files/patch-src::PartFile.cpp deleted file mode 100644 index 754ef7fba952..000000000000 --- a/net/xmule/files/patch-src::PartFile.cpp +++ /dev/null @@ -1,25 +0,0 @@ ---- src/PartFile.cpp.orig Sun Mar 23 00:11:08 2003 -+++ src/PartFile.cpp Sun Mar 23 00:12:13 2003 -@@ -14,6 +14,10 @@ - //along with this program; if not, write to the Free Software - //Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - #include "PartFile.h" - #include "emule.h" - #include "updownclient.h" -@@ -177,7 +181,11 @@ - delete gaplist.GetAt(pos); - } - -+#if (defined(BSD) && (BSD >= 199103)) -+#define MAX_PATH MAXPATHLEN -+#else - #define MAX_PATH 1024 -+#endif - - void CPartFile::CreatePartFile(){ - // use lowest free partfilenumber for free file (InterCeptor) diff --git a/net/xmule/files/patch-src::Preferences.cpp b/net/xmule/files/patch-src::Preferences.cpp deleted file mode 100644 index b5362cd0688a..000000000000 --- a/net/xmule/files/patch-src::Preferences.cpp +++ /dev/null @@ -1,25 +0,0 @@ ---- src/Preferences.cpp.orig Tue Mar 18 19:22:47 2003 -+++ src/Preferences.cpp Sun Mar 23 00:58:06 2003 -@@ -22,6 +22,10 @@ - #include <config.h> - #endif // HAVE_CONFIG_H - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - #include "wintypes.h" - #include "Preferences.h" - #include <time.h> -@@ -41,7 +45,11 @@ - #include <sys/stat.h> - #include <sys/types.h> - -+#if (defined(BSD) && (BSD >= 199103)) -+#define MAX_PATH MAXPATHLEN -+#else - #define MAX_PATH 2048 -+#endif - - extern int sprintf(char *__restrict __s,__const char*__restrict __format,...) __attribute__ ((__format__ (__printf__, 2,3))); - diff --git a/net/xmule/files/patch-src::ServerList.cpp b/net/xmule/files/patch-src::ServerList.cpp deleted file mode 100644 index 19e5ae392a9d..000000000000 --- a/net/xmule/files/patch-src::ServerList.cpp +++ /dev/null @@ -1,25 +0,0 @@ ---- src/ServerList.cpp.orig Sun Mar 23 00:12:47 2003 -+++ src/ServerList.cpp Sun Mar 23 00:13:13 2003 -@@ -15,6 +15,9 @@ - //along with this program; if not, write to the Free Software - //Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif - - //#include "stdafx.h" - #include "ServerList.h" -@@ -346,7 +349,12 @@ - - #include <wx/txtstrm.h> - #include <wx/wfstream.h> -+ -+#if (defined(BSD) && (BSD >= 199103)) -+#define MAX_PATH MAXPATHLEN -+#else - #define MAX_PATH 1024 -+#endif - - void CServerList::AddServersFromTextFile(CString strFilename,bool isstaticserver) { - wxString strLine; diff --git a/net/xmule/files/patch-src::SharedFileList.cpp b/net/xmule/files/patch-src::SharedFileList.cpp deleted file mode 100644 index 1fbeec76fb7c..000000000000 --- a/net/xmule/files/patch-src::SharedFileList.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- src/SharedFileList.cpp.orig Sun Mar 23 01:02:07 2003 -+++ src/SharedFileList.cpp Sun Mar 23 01:02:34 2003 -@@ -15,6 +15,10 @@ - //along with this program; if not, write to the Free Software - //Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - //#include "stdafx.h" - #include "emule.h" - #include "emuleDlg.h" -@@ -28,6 +32,10 @@ - #include "ED2KLink.h" - #include "packets.h" - #include <time.h> -+ -+#if (defined(BSD) && (BSD >= 199103)) -+#include <libgen.h> -+#endif - - CSharedFileList::CSharedFileList(CPreferences* in_prefs,CServerConnect* in_server,CKnownFileList* in_filelist){ - app_prefs = in_prefs; diff --git a/net/xmule/files/patch-src::UDPSocket.cpp b/net/xmule/files/patch-src::UDPSocket.cpp deleted file mode 100644 index e3c102da0700..000000000000 --- a/net/xmule/files/patch-src::UDPSocket.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- src/UDPSocket.cpp.orig Sun Mar 23 00:20:02 2003 -+++ src/UDPSocket.cpp Sun Mar 23 00:22:39 2003 -@@ -25,7 +25,7 @@ - static pthread_attr_t attr;//=PTHREAD_CREATE_DETACHED; - - #ifdef __FreeBSD__ --static pthread_mutex_t gethostby_mutex = PTHREAD_MUTEX_INITIALIZER; -+static wxMutex *s_mutexProtectingGetHostByName; - - static int - convert (struct hostent *host, struct hostent *result, -@@ -131,7 +131,7 @@ - { - struct hostent *host; - -- pthread_mutex_lock (&gethostby_mutex); -+ s_mutexProtectingGetHostByName->Lock(); - - host = gethostbyname (name); - if (!host || -@@ -140,7 +140,7 @@ - result = NULL; - } - -- pthread_mutex_unlock (&gethostby_mutex); -+ s_mutexProtectingGetHostByName->Unlock(); - return result; - } - diff --git a/net/xmule/files/patch-src::wx::Makefile.in b/net/xmule/files/patch-src::wx::Makefile.in deleted file mode 100644 index 17575f051500..000000000000 --- a/net/xmule/files/patch-src::wx::Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- src/wx/Makefile.in.orig Sun Mar 30 20:48:21 2003 -+++ src/wx/Makefile.in Sun Mar 30 20:48:35 2003 -@@ -70,8 +70,10 @@ - BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ - CATOBJEXT = @CATOBJEXT@ - CC = @CC@ -+CFLAGS = @CFLAGS@ - CPP = @CPP@ - CXX = @CXX@ -+CXXFLAGS = @CXXFLAGS@ - DATADIRNAME = @DATADIRNAME@ - DEPDIR = @DEPDIR@ - DISABLE_PROGRESS = @DISABLE_PROGRESS@ diff --git a/net/xmule/files/patch-src::wx::xrc::Makefile.in b/net/xmule/files/patch-src::wx::xrc::Makefile.in deleted file mode 100644 index 421975fd9c95..000000000000 --- a/net/xmule/files/patch-src::wx::xrc::Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- src/wx/xrc/Makefile.in.orig Sun Mar 30 20:48:55 2003 -+++ src/wx/xrc/Makefile.in Sun Mar 30 20:49:06 2003 -@@ -70,8 +70,10 @@ - BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ - CATOBJEXT = @CATOBJEXT@ - CC = @CC@ -+CFLAGS = @CFLAGS@ - CPP = @CPP@ - CXX = @CXX@ -+CXXFLAGS = @CXXFLAGS@ - DATADIRNAME = @DATADIRNAME@ - DEPDIR = @DEPDIR@ - DISABLE_PROGRESS = @DISABLE_PROGRESS@ |