diff options
author | oliver <oliver@FreeBSD.org> | 2003-10-13 16:16:04 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2003-10-13 16:16:04 +0000 |
commit | e921646994ea2564fcf1e8e50e2cf6ac8962287b (patch) | |
tree | 10244e5f018702a222beecff90238982c302ae49 | |
parent | e68b0d34cdf668ff10374315b9da6f386273d3af (diff) | |
download | FreeBSD-ports-e921646994ea2564fcf1e8e50e2cf6ac8962287b.zip FreeBSD-ports-e921646994ea2564fcf1e8e50e2cf6ac8962287b.tar.gz |
Don't treat a nonremote display as remote (and so disabling the the overlay
mode w/o a need to)
PR: ports/57869
Submitted By: Matthias Andree <matthias.andree@web.de>
-rw-r--r-- | multimedia/xawtv/Makefile | 1 | ||||
-rw-r--r-- | multimedia/xawtv/files/patch-x11::xt.c | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/xawtv/Makefile b/multimedia/xawtv/Makefile index f0d8e80..26a2b1b 100644 --- a/multimedia/xawtv/Makefile +++ b/multimedia/xawtv/Makefile @@ -7,6 +7,7 @@ PORTNAME= xawtv PORTVERSION= 3.88.1 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://bytesex.org/xawtv/ DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/multimedia/xawtv/files/patch-x11::xt.c b/multimedia/xawtv/files/patch-x11::xt.c new file mode 100644 index 0000000..86487e8 --- /dev/null +++ b/multimedia/xawtv/files/patch-x11::xt.c @@ -0,0 +1,12 @@ +diff -ur xawtv-3.88.1/x11/xt.c xawtv-3.88.1-ma/x11/xt.c +--- x11/xt.c Wed Apr 16 12:23:12 2003 ++++ x11/xt.c Sat Oct 11 21:04:36 2003 +@@ -1459,7 +1459,7 @@ + fprintf(stderr,"*"); + + /* catch unix sockets on FreeBSD */ +- if (0 == length) { ++ if (0 == length || ss.ss_family == AF_UNIX) { + if (debug) + fprintf(stderr, " ok (unix socket)\n"); + return; |