head	1.1;
access;
symbols
	RELEASE_8_3_0:1.1
	RELEASE_9_0_0:1.1
	RELEASE_7_4_0:1.1
	RELEASE_8_2_0:1.1
	RELEASE_6_EOL:1.1
	RELEASE_8_1_0:1.1
	RELEASE_7_3_0:1.1
	RELEASE_8_0_0:1.1
	RELEASE_7_2_0:1.1
	RELEASE_7_1_0:1.1
	RELEASE_6_4_0:1.1
	RELEASE_5_EOL:1.1
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1;
locks; strict;
comment	@# @;


1.1
date	2006.06.27.22.27.22;	author mi;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Fix up a few issues:
	. add recognition of the BSD-specific SIGINFO signal (to be
	  submitted to authors);
	. avoid even extracting the compat/ subdirectory for fear
	  of picking up a wrong declaration for a function defined
	  in a system library;
	. force to use the system strstr() instead of building TCL's
	  own (from compat/strstr.c);
	. similarly, use the system memmove() instead of the (identical)
	  bcopy;
	. run the vendor's tests as part of the build -- the test failures
	  are not fatal, but may help investigate problems;
	. fix up the two failing tests so that none currently fail on my two
	  test systems (FreeBSD-6.1-STABLE i386 and amd64) (fixes submitted
	  to authors);
	. quiet down the noisy warning, triggered in the thread-case by
	  the re-#define of inet_ntoa() in tclUnixPort.h.

Bump PORTREVISION.
@
text
@--- ../generic/tclPosixStr.c	Mon May 27 06:14:21 2002
+++ ../generic/tclPosixStr.c	Tue Jun 27 13:14:57 2006
@@@@ -1044,4 +1044,7 @@@@ Tcl_SignalId(sig)
 	case SIGXFSZ: return "SIGXFSZ";
 #endif
+#ifdef SIGINFO
+	case SIGINFO: return "SIGINFO";
+#endif
     }
     return "unknown signal";
@@@@ -1175,4 +1178,7 @@@@ Tcl_SignalMsg(sig)
 #ifdef SIGXFSZ
 	case SIGXFSZ: return "exceeded file size limit";
+#endif
+#ifdef SIGINFO
+	case SIGINFO: return "information/status request";
 #endif
     }
@
