summaryrefslogtreecommitdiff
path: root/net/xicq/files/patch-ah
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-11-09 07:48:19 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-11-09 07:48:19 +0000
commitd11b5ce66c0ead368e34baa0e8e0e3023267bcc4 (patch)
treeac669bef9fbdafeb9e8b789702d6618e1ea89cf2 /net/xicq/files/patch-ah
parent- Add SHA256 (diff)
Move instant messaging related ports to newly created net-im category:
net/aim -> net-im/aim net/amsn -> net-im/amsn net/ari-yahoo -> net-im/ari-yahoo net/ayttm -> net-im/ayttm net/bsflite -> net-im/bsflite net/ccmsn -> net-im/ccmsn net/centericq -> net-im/centericq net/cicquin -> net-im/cicquin net/coccinella -> net-im/coccinella net/convey -> net-im/convey net/echat -> net-im/echat net/ejabberd -> net-im/ejabberd net/firetalk -> net-im/firetalk net/fugu -> net-im/fugu net/gajim -> net-im/gajim net/gale -> net-im/gale net/ginsu -> net-im/ginsu net/gnome-jabber -> net-im/gnome-jabber net/gtkyahoo -> net-im/gtkyahoo net/gyach -> net-im/gyach net/icb -> net-im/icb net/icmpchat -> net-im/icmpchat net/icqlib -> net-im/icqlib net/imcom -> net-im/imcom net/jabberd -> net-im/jabberd net/jabber-pymsn -> net-im/jabber-pymsn net/jit -> net-im/jit net/kmerlin -> net-im/kmerlin net/kmess -> net-im/kmess net/konverse -> net-im/konverse net/kpopup -> net-im/kpopup net/libmsn -> net-im/libmsn net/libyahoo2 -> net-im/libyahoo2 net/linpopup -> net-im/linpopup net/linux-ymessenger -> net-im/linux-ymessenger net/mcabber -> net-im/mcabber net/mercury -> net-im/mercury net/micq -> net-im/micq net/mu-conference -> net-im/mu-conference net/naim -> net-im/naim net/pebrot -> net-im/pebrot net/pork -> net-im/pork net/py-msnp -> net-im/py-msnp net/py-pyxmpp -> net-im/py-pyxmpp net/p5-Jabber-Connection -> net-im/p5-Jabber-Connection net/p5-Net-AIM -> net-im/p5-Net-AIM net/p5-Net-AOLIM -> net-im/p5-Net-AOLIM net/p5-Net-ICQ2000 -> net-im/p5-Net-ICQ2000 net/p5-Net-MSN -> net-im/p5-Net-MSN net/p5-Net-NetSend -> net-im/p5-Net-NetSend net/p5-Net-OSCAR -> net-im/p5-Net-OSCAR net/simicq -> net-im/simicq net/sulci -> net-im/sulci net/tik -> net-im/tik net/tkabber -> net-im/tkabber net/tkabber-devel -> net-im/tkabber-devel net/tmsnc -> net-im/tmsnc net/vicq -> net-im/vicq net/vqcc-gtk -> net-im/vqcc-gtk net/xicq -> net-im/xicq net/ymessenger -> net-im/ymessenger net/ysm -> net-im/ysm Repocopied by: marcus
Notes
Notes: svn path=/head/; revision=147669
Diffstat (limited to 'net/xicq/files/patch-ah')
-rw-r--r--net/xicq/files/patch-ah26
1 files changed, 0 insertions, 26 deletions
diff --git a/net/xicq/files/patch-ah b/net/xicq/files/patch-ah
deleted file mode 100644
index 3ac804237512..000000000000
--- a/net/xicq/files/patch-ah
+++ /dev/null
@@ -1,26 +0,0 @@
---- src/libXicq/net.cc.orig Sun Feb 27 12:37:37 2000
-+++ src/libXicq/net.cc Sun Feb 27 12:38:59 2000
-@@ -6,6 +6,9 @@
- **************************************************************************/
-
-
-+#ifdef __FreeBSD__
-+#include <sys/param.h>
-+#endif
- #include "net.h"
-
- #define MAXWATCH 10
-@@ -144,8 +147,13 @@
- int net_udpRecv(unsigned char *mesg, int length)
- {
- structlength = sizeof(client);
-+#if defined(__FreeBSD__) && (__FreeBSD_version >= 400013)
-+ recvd = recvfrom(net_information.sock, mesg, length, 0,
-+ (struct sockaddr *) &client, (socklen_t *) &structlength);
-+#else
- recvd = recvfrom(net_information.sock, mesg, length, 0,
- (struct sockaddr *) &client, &structlength);
-+#endif
- if (recvd < 0)
- {
- perror("libXicq: recvfrom");