mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
27 lines
810 B
Plaintext
27 lines
810 B
Plaintext
--- 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");
|