diff options
author | sobomax <sobomax@FreeBSD.org> | 2007-04-09 02:07:23 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2007-04-09 02:07:23 +0800 |
commit | 2719b229adc73a5935dbaa82f3cd53d072a819b9 (patch) | |
tree | 89c0d8cd8aca4f4b2cf5d497569de988689815f7 /net/ortp | |
parent | 2e3b848a0e818339e82e128c0ef455bfeee38d45 (diff) | |
download | freebsd-ports-gnome-2719b229adc73a5935dbaa82f3cd53d072a819b9.tar.gz freebsd-ports-gnome-2719b229adc73a5935dbaa82f3cd53d072a819b9.tar.zst freebsd-ports-gnome-2719b229adc73a5935dbaa82f3cd53d072a819b9.zip |
Fix on ia64.
Poked by: Kris's unbildable ports reminder
Diffstat (limited to 'net/ortp')
-rw-r--r-- | net/ortp/files/patch-src::stun.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/ortp/files/patch-src::stun.c b/net/ortp/files/patch-src::stun.c new file mode 100644 index 000000000000..7bb3d65f9562 --- /dev/null +++ b/net/ortp/files/patch-src::stun.c @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/stun.c ++++ src/stun.c +@@ -768,7 +768,7 @@ + read(fd,&tick,sizeof(tick));
+ closesocket(fd);
+ }
+-#elif defined(__linux)
++#elif defined(__linux) || defined (__FreeBSD__)
+ {
+ fd_set fdSet;
+ int maxFd=0;
|