Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 38669 invoked by uid 500); 10 Mar 2003 18:52:21 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 38634 invoked from network); 10 Mar 2003 18:52:20 -0000 Errors-To: Message-Id: <5.2.0.9.2.20030310125240.02344ec8@pop3.rowe-clan.net> X-Sender: wrowe%rowe-clan.net@pop3.rowe-clan.net X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Mon, 10 Mar 2003 12:54:08 -0600 To: "MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" From: "William A. Rowe, Jr." Subject: RE: HPUX 10.20 threading? Cc: dev@apr.apache.org In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N At 11:57 AM 3/10/2003, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: >- 10.20 does not have pthreads. The threading library is called CMA threads, >and is pretty different in terms of implementation and API's from that of >Pthread library. I understand that once can install pthreads, but that seems dicey... here is what I figure to be the correct patch; please confirm... (I'm guessing hpux9 won't even suggest pthreads can be enabled and we won't try.) Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.518 diff -u -r1.518 configure.in --- configure.in 10 Mar 2003 09:50:38 -0000 1.518 +++ configure.in 10 Mar 2003 18:50:38 -0000 @@ -445,6 +445,11 @@ OSDIR="unix" eolstr="\\n" ;; + *hpux10* ) + enable_threads="no" + OSDIR="unix" + eolstr="\\n" + ;; *) OSDIR="unix" eolstr="\\n"