summaryrefslogtreecommitdiff
path: root/x11/xview-lib/patches/patch-dw
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2006-01-31 20:19:02 +0000
committertv <tv@pkgsrc.org>2006-01-31 20:19:02 +0000
commit5520be588b19525e37fd3beb880feb6a7d5fd702 (patch)
treeac38b597af8194f97ef08d4fd0ea67ec8fae54d6 /x11/xview-lib/patches/patch-dw
parente2af5cd01302ca875189525f76bd56c09718edd8 (diff)
downloadpkgsrc-tv-libtool-1-5-18-tmpdirfix.tar.gz
Backport a change from 1.5.22 to 1.5.18 that fixes some issues withtv-libtool-1-5-18-tmpdirfix
temp dir creation when using relink-based finalization.
Diffstat (limited to 'x11/xview-lib/patches/patch-dw')
-rw-r--r--x11/xview-lib/patches/patch-dw16
1 files changed, 0 insertions, 16 deletions
diff --git a/x11/xview-lib/patches/patch-dw b/x11/xview-lib/patches/patch-dw
deleted file mode 100644
index f9f358d173b..00000000000
--- a/x11/xview-lib/patches/patch-dw
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-dw,v 1.1 2001/12/20 09:20:08 tron Exp $
-
---- lib/libxview/notify/ndisdispch.c.orig Tue Jun 29 07:18:06 1993
-+++ lib/libxview/notify/ndisdispch.c Thu Dec 20 10:09:27 2001
-@@ -30,8 +30,9 @@
- #define GETDTABLESIZE() \
- (dtablesize_cache?dtablesize_cache:(dtablesize_cache=(int)sysconf(_SC_OPEN_MAX)))
- #else
--#define GETDTABLESIZE() \
-- (dtablesize_cache?dtablesize_cache:(dtablesize_cache=getdtablesize()))
-+#define GETDTABLESIZE() \
-+ (dtablesize_cache ? dtablesize_cache : \
-+ (dtablesize_cache = MIN(getdtablesize(), FD_SETSIZE)))
- #endif SVR4
-
- pkg_private_data u_int ndis_flags = 0;