Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 20128 invoked by uid 500); 9 Sep 2002 22:02:18 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 20116 invoked from network); 9 Sep 2002 22:02:18 -0000 Date: 9 Sep 2002 22:02:17 -0000 Message-ID: <20020909220217.22904.qmail@icarus.apache.org> From: brianp@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr CHANGES X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N brianp 2002/09/09 15:02:17 Modified: poll/unix poll.c . CHANGES Log: Include alloca.h on Tru64 to ensure that alloca gets redefined to a version that works properly with threads Submitted by: David Hill [ddhill@zk3.dec.com] Revision Changes Path 1.31 +4 -0 apr/poll/unix/poll.c Index: poll.c =================================================================== RCS file: /home/cvs/apr/poll/unix/poll.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- poll.c 1 Sep 2002 04:15:11 -0000 1.30 +++ poll.c 9 Sep 2002 22:02:16 -0000 1.31 @@ -64,6 +64,10 @@ #if HAVE_SYS_POLL_H #include #endif +#if HAVE_ALLOCA && defined(__osf__) +/* Tru64 UNIX requires this for proper alloca operation in threaded programs */ +#include +#endif #ifdef NETWARE #define HAS_SOCKETS(dt) (dt == APR_POLL_SOCKET) ? 1 : 0 1.330 +3 -0 apr/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apr/CHANGES,v retrieving revision 1.329 retrieving revision 1.330 diff -u -r1.329 -r1.330 --- CHANGES 5 Sep 2002 05:26:48 -0000 1.329 +++ CHANGES 9 Sep 2002 22:02:17 -0000 1.330 @@ -1,5 +1,8 @@ Changes with APR 0.9.0 + *) Fixed usage of alloca in apr_poll() on Tru64 + [Dave Hill ] + *) Running "make check" in the toplevel directory or the test/ directory will build and run all test programs. [Aaron Bannert]