Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:21862 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 35868 invoked by uid 1010); 13 Feb 2006 16:38:42 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 35853 invoked from network); 13 Feb 2006 16:38:42 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Feb 2006 16:38:42 -0000 X-Host-Fingerprint: 213.197.177.189 mail.homelan.lt Linux 2.5 (sometimes 2.4) (4) Received: from ([213.197.177.189:35994] helo=mail.homelan.lt) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id FF/B1-25344-116B0F34 for ; Mon, 13 Feb 2006 11:38:41 -0500 Received: from haden ([192.168.2.1] helo=beast) by mail.homelan.lt with esmtp (Exim 4.50) id 1F8gls-0002io-Pe for internals@lists.php.net; Mon, 13 Feb 2006 18:41:54 +0200 To: internals@lists.php.net User-Agent: KMail/1.9.1 MIME-Version: 1.0 Content-Disposition: inline Date: Mon, 13 Feb 2006 18:39:01 +0200 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-ID: <200602131839.02039.tomas@homelan.lt> Subject: Extensions pthreads From: tomas@homelan.lt I've failed to find hints about why generated "configure" specifically ignores pthread* libraries, e.g.: ... case milter in c|c_r|pthread*) ;; *) LIBS="-lmilter $LIBS" ;; esac ... Can extensions with pthreads be safely created or there are some hard-to-catch problems with that? {I've actually have created one such extension (has lots of worker pthreads) which seems to work fine, but I wonder about possible troubles.}