diff options
Diffstat (limited to 'net-im/licq/files')
-rw-r--r-- | net-im/licq/files/patch-admin-ltmain.sh | 12 | ||||
-rw-r--r-- | net-im/licq/files/patch-main.cpp | 10 | ||||
-rw-r--r-- | net-im/licq/files/patch-socket.cpp | 34 |
3 files changed, 0 insertions, 56 deletions
diff --git a/net-im/licq/files/patch-admin-ltmain.sh b/net-im/licq/files/patch-admin-ltmain.sh deleted file mode 100644 index 33a0638ce819..000000000000 --- a/net-im/licq/files/patch-admin-ltmain.sh +++ /dev/null @@ -1,12 +0,0 @@ ---- admin/ltmain.sh.orig Sun Oct 26 04:47:29 2003 -+++ admin/ltmain.sh Sun Oct 26 04:47:56 2003 -@@ -1239,7 +1239,7 @@ - esac - elif test "X$arg" = "X-lc_r"; then - case $host in -- *-*-openbsd* | *-*-freebsd*) -+ *-*-openbsd*) - # Do not include libc_r directly, use -pthread flag. - continue - ;; - diff --git a/net-im/licq/files/patch-main.cpp b/net-im/licq/files/patch-main.cpp deleted file mode 100644 index e6ca09b4f421..000000000000 --- a/net-im/licq/files/patch-main.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/main.cpp.orig Wed Jan 29 13:19:50 2003 -+++ src/main.cpp Wed Jan 29 13:20:13 2003 -@@ -10,7 +10,6 @@ - - #ifdef USE_SOCKS5 - #define SOCKS --#define INCLUDE_PROTOTYPES - extern "C" { - #include <socks.h> - } diff --git a/net-im/licq/files/patch-socket.cpp b/net-im/licq/files/patch-socket.cpp deleted file mode 100644 index 36d9f1d9f585..000000000000 --- a/net-im/licq/files/patch-socket.cpp +++ /dev/null @@ -1,34 +0,0 @@ ---- src/socket.cpp.orig Thu Jan 2 22:08:06 2003 -+++ src/socket.cpp Wed Jan 8 07:58:47 2003 -@@ -13,6 +13,9 @@ - #include <netdb.h> - #include <fcntl.h> - #include <unistd.h> -+#ifdef __FreeBSD__ -+#include <osreldate.h> -+#endif - - #ifdef HAVE_INET_ATON - #include <arpa/inet.h> -@@ -427,7 +430,11 @@ - m_sRemoteAddr.sin_family = AF_INET; - - // if connect fails then call CloseConnection to clean up before returning -+#if defined(__FreeBSD__) && __FreeBSD_version < 400013 -+ int sizeofSockaddr = sizeof(struct sockaddr); -+#else - socklen_t sizeofSockaddr = sizeof(struct sockaddr); -+#endif - if (connect(m_nDescriptor, (struct sockaddr *)&m_sRemoteAddr, sizeofSockaddr) < 0) - { - // errno has been set ---- src/socket.cpp.orig Wed Jan 29 13:19:59 2003 -+++ src/socket.cpp Wed Jan 29 13:20:20 2003 -@@ -42,7 +42,6 @@ - #ifdef USE_SOCKS5 - - #define SOCKS --#define INCLUDE_PROTOTYPES - extern "C" { - #include <socks.h> - } |