From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12182 invoked from network); 3 Jul 2001 06:58:02 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 3 Jul 2001 06:58:02 -0000 Received: (qmail 7998 invoked by alias); 3 Jul 2001 06:57:02 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 15221 Received: (qmail 7980 invoked from network); 3 Jul 2001 06:57:01 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer goliath.siemens.de) From: "Andrej Borsenkow" To: "Clint Adams" , Subject: RE: PATCH: zsh/pcre module Date: Tue, 3 Jul 2001 10:57:48 +0400 Message-ID: <001e01c1038d$784822b0$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <20010702153553.A22477@dman.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2479.0006 > +AC_CHECK_LIB(pcre, pcre_compile) I urge everybody to use AC_SEARCH_LIB. AC_CHECK_LIB has nasty habit of adding library even when it is not needed; moreover, it does it in front, thus sometimes preventing you from using your own library. -andrej