From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8832 invoked by alias); 21 Dec 2012 11:38:22 -0000 Received: (qmail 8746 invoked by uid 22791); 21 Dec 2012 11:38:20 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_YE,TW_KG X-Spam-Check-By: sourceware.org Received: from mout3.freenet.de (HELO mout3.freenet.de) (195.4.92.93) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 21 Dec 2012 11:38:14 +0000 Received: from [195.4.92.141] (helo=mjail1.freenet.de) by mout3.freenet.de with esmtpa (ID ralf.corsepius@freenet.de) (port 25) (Exim 4.76 #1) id 1Tm0vb-0007E5-Ju for gdb-patches@sourceware.org; Fri, 21 Dec 2012 12:38:11 +0100 Received: from localhost ([::1]:51659 helo=mjail1.freenet.de) by mjail1.freenet.de with esmtpa (ID ralf.corsepius@freenet.de) (Exim 4.76 #1) id 1Tm0vb-0001cV-GC for gdb-patches@sourceware.org; Fri, 21 Dec 2012 12:38:11 +0100 Received: from [195.4.92.19] (port=37537 helo=9.mx.freenet.de) by mjail1.freenet.de with esmtpa (ID ralf.corsepius@freenet.de) (Exim 4.76 #1) id 1Tm0sv-0007Qe-AU for gdb-patches@sourceware.org; Fri, 21 Dec 2012 12:35:25 +0100 Received: from hsi-kbw-109-193-026-150.hsi7.kabel-badenwuerttemberg.de ([109.193.26.150]:42916 helo=[192.168.1.104]) by 9.mx.freenet.de with esmtpsa (ID ralf.corsepius@freenet.de) (TLSv1:CAMELLIA256-SHA:256) (port 587) (Exim 4.76 #1) id 1Tm0sv-0000Hx-4b for gdb-patches@sourceware.org; Fri, 21 Dec 2012 12:35:25 +0100 Message-ID: <50D4497B.2050600@rtems.org> Date: Fri, 21 Dec 2012 11:38:00 -0000 From: Ralf Corsepius User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: Update some sim copyright headers to GPLv3-or-later References: <20121219072641.GQ3273@adacore.com> <201212192334.22589.vapier@gentoo.org> <20121220050320.GE6130@adacore.com> <201212201735.40797.vapier@gentoo.org> <20121221074407.GD5370@adacore.com> <83k3sbn4xk.fsf@gnu.org> In-Reply-To: <83k3sbn4xk.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-12/txt/msg00766.txt.bz2 On 12/21/2012 10:13 AM, Eli Zaretskii wrote: >> Date: Fri, 21 Dec 2012 11:44:07 +0400 >> From: Joel Brobecker >> Cc: gdb-patches@sourceware.org >> >> I do seem to have pkg-config installed: >> >> % which pkg-config >> /usr/bin/pkg-config >> % pkg-config --version >> 0.26 >> >> Is that the same tool we are talking about? > > Yes. > >> pkg-config, I thought, was a tool initially from the Gtk+ project. I >> would seem strange that aclocal would depend on it. aclocal doesn't depend on it. pkg.m4 is distributed by the pkgconfig package and installed to aclocal's global aclocal directory, from where running aclocal will pick it up, when you're using it. i.e. pediantically speaking, not aclocal depends on it, something in gdb depends on pkgconfig's pkg.m4. If you want to get rid of this dependency, you can try to append pkg.m4 to an acinclude.m4 next to the configure.ac, which pulling in pkg.m4. Ralf