summaryrefslogtreecommitdiff
path: root/net/netcat6/patches
diff options
context:
space:
mode:
authorghen <ghen>2006-03-08 09:09:42 +0000
committerghen <ghen>2006-03-08 09:09:42 +0000
commitaba0fa055e5b52b1544d9661621ae17b265fe91e (patch)
treea8f41cc2748af5e1b1ec412ee08d8f0d6c631e11 /net/netcat6/patches
parent870cce5e9dd32bea7fdea9a7f1e0e1868eba21f8 (diff)
downloadpkgsrc-aba0fa055e5b52b1544d9661621ae17b265fe91e.tar.gz
Update netcat6 to 1.0. Notable changes:
* Fixed a bug in listen (missing AI_PASSIVE flag) * Converted to use autopoint for i18n source (merged from autopoint_test branch) * Fixed a segv in the bluez code (null local address) * Moved afindep and bluez network code to separate modules with very generic interfaces and refactored to create functions for common code. The bluez code now uses a similar approach to afindep. * Reworking of warnings and other messages to simplify and reduce the number of strings for translation. * Made parameter checking more resilient and now always includes arguments for optional components (such as bluetooth), but now gives an appropriate error if used. * Updated man page with bluetooth options. * Created a system.h header for system specific defines, which includes autoconfs config.h. * Changed boolean types to use stdbool.h (where available) * Fixed typedefs to use *_t for the typedef symbol, not the original struct name. * Extensive code cleanup to prepare for a release. * Add -X and --rev-transfer options (reverse transfer). * Updated copyright notices for 2005. * Fixed --transfer example in man page. * Corrected --no-reuseaddr handling (it was inverted). * Updated i18n subsystem to gettext 0.14.1 * Added configuration time detection of Bluez. * Applied Chris's patch that fixes SOMAXCONN backlog parameter for listen(2) in src/network.c, slightly modified. * Added support for Bluez (http://www.bluez.org) on Linux systems. * Fixed a conflict with FreeBSD profiling library by renaming warn() to warning(). Thanks to Filippo Natali for reporting the bug. * Fixed CFLAGS handling problem. Thanks to Filippo Natali for the patch and to the FreeBSD maintainers for reporting the bug.
Diffstat (limited to 'net/netcat6/patches')
-rw-r--r--net/netcat6/patches/patch-aa18
1 files changed, 0 insertions, 18 deletions
diff --git a/net/netcat6/patches/patch-aa b/net/netcat6/patches/patch-aa
deleted file mode 100644
index 7d0e2502a7a..00000000000
--- a/net/netcat6/patches/patch-aa
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/12/28 15:49:41 ghen Exp $
-
-NetBSD/DragonFly/*BSD/Linux/Solaris have alloca defined in either <stdlib.h>
-or <alloca.h>, so drop this test because it breaks on DragonFly.
-
---- src/filter.c.orig 2003-04-14 09:00:50.000000000 +0000
-+++ src/filter.c
-@@ -37,10 +37,6 @@
- #else
- #ifdef _AIX
- #pragma alloca
--#else
--#ifndef alloca /* predefined by HP cc +Olibcalls */
--char *alloca();
--#endif
- #endif
- #endif
-