From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 120388 invoked by alias); 24 Jul 2015 06:42:50 -0000 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com Received: (qmail 120373 invoked by uid 89); 24 Jul 2015 06:42:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: mail-wi0-f176.google.com Received: from mail-wi0-f176.google.com (HELO mail-wi0-f176.google.com) (209.85.212.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 24 Jul 2015 06:42:48 +0000 Received: by wicgb10 with SMTP id gb10so14485001wic.1 for ; Thu, 23 Jul 2015 23:42:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=+mYhnHQOZoosZOOafVpTgU8fLURKZaZ25BZSg6vDHGw=; b=OOObL4YYnepLe7+iWxDgBtjtfC+QifqhB+tcfMrPp/UpmC2gV8Q3ZDCbYXYXDwON7o hdK/aBjt0lBq2a0kNegXe+uBsSpg/vdLDkWkY1wkiN+WxT4RB1YjOWCVSA3/R1hrDA4W B0tbQ2pEO8V8ZEtaMPs8/Kq3ac1VIlv/qi3ryuAOyzgLS1iMcOUTpxXh5cRddezdO4is t3IS+zn77v/nA68m7mRREC6ioYyTR7WZgucBKLJrdWsHKGVDTCFS+7fyJzUCcZ8LLeqx GTOcoRhSux94AkKnD4VcpafvAg6ZET7QptpO0MKq7xpOx5Nmptf17xvKeGUIgRDaYNVy 0R6A== X-Gm-Message-State: ALoCoQm1fVL8GL4IOoblo4ZztLuIEM3ENEa37YTLM0/EbmQmDhLh7nE4wt9GXbaO9Qo1UoqXUJXk X-Received: by 10.180.9.75 with SMTP id x11mr3928078wia.80.1437720165933; Thu, 23 Jul 2015 23:42:45 -0700 (PDT) Received: from ?IPv6:2001:470:6c46:1:12c3:7bff:fe9d:8df0? ([2001:470:6c46:1:12c3:7bff:fe9d:8df0]) by smtp.googlemail.com with ESMTPSA id pg9sm10953650wjb.40.2015.07.23.23.42.45 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 23 Jul 2015 23:42:45 -0700 (PDT) Message-ID: <55B1DE64.3010308@asokolov.org> Date: Fri, 24 Jul 2015 06:42:00 -0000 From: Alexey Sokolov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: cygwin-apps@cygwin.com Subject: Re: [ITP] znc 1.6.0 References: <55AB5EC2.2060400@asokolov.org> <20150719100317.GD19825@calimero.vinschen.de> <55ABA522.9000008@asokolov.org> <87d1zogku1.fsf@Rainer.invalid> <55ABEC90.3040106@asokolov.org> <55ABECDD.9040805@asokolov.org> <87zj2sezel.fsf@Rainer.invalid> <55AC0089.2090304@asokolov.org> <20150720074442.GJ3864@calimero.vinschen.de> <55AD44E9.8070207@asokolov.org> <20150721071221.GZ3864@calimero.vinschen.de> <55AED4D4.1040403@tiscali.co.uk> <55AED687.8070607@asokolov.org> <55AEDB8E.6070507@asokolov.org> <55B0213A.5070005@tiscali.co.uk> <55B03C16.1060009@asokolov.org> <55B0EB09.50402@cornell.edu> <55B15377.4090101@asokolov.org> <55B156E8.9010301@asokolov.org> <55B15C93.9040208@cornell.edu> In-Reply-To: <55B15C93.9040208@cornell.edu> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00190.txt.bz2 >> If you add ACLOCAL_FLAGS="-I m4" to znc.cygport, does it fix for you? > > Yes. So why didn't your build require that? I have a hypothesis, but can't prove it without digging autotools sources. My guess is that you have AX_PTHREAD installed in /usr/share/aclocal (or in some other directory which is considered by default), and with bigger #serial than what local m4/ax_pthread.m4 has (17). That's why it doesn't work for you. But probably aclocal still tries local m4/ directory as last resort even if "-I m4" is not provided? That's why it could work for me. By explicitly adding m4/ to include dirs, it looks there earlier. But this is just a guess.