X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com Subject: Re: [geda-user] geda-git fails to build with modern guile To: geda-user AT delorie DOT com References: <40d81407-41d7-71be-a3ad-ed177dbf793b AT s5tehnika DOT net> From: "Branko (brankob AT s5tehnika DOT net) [via geda-user AT delorie DOT com]" Message-ID: Disposition-Notification-To: Branko Date: Tue, 24 Mar 2020 14:49:06 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: sl Content-Transfer-Encoding: 7bit Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 24. 03. 20 13:23, Branko (brankob AT s5tehnika DOT net) [via geda-user AT delorie DOT com] wrote: > > Also: > > 1. configure.ac/configure in /xorn directory fails to find any python. > > There are two macros: > > AM_PATH_PYTHON([2.7]) > PKG_CHECK_MODULES([PYTHON],[python2 >= 2.7]) > > they fail to find any pthon-2.x on my machine even though I ghave > versions 2.7.17, 3.6.10 and 3.8.2 > > 2. Python2 is on its way out. if you are pushing out guile in favor of > python, why not using newest stable available (3.8) ? > > > I'm eyegrepping through xorn/configure and it seems that those macros expand so that they call pkg-config with a syntax it can0t uderstand. For example: pkg-config --exists "python2 >= 2.7" First, my pkg-config never lists python2 package. all I have is various python-x.y packages ( python-2.7, python-3.6 etc). Second,my pkg-config doesn't accept "package >= version" operator. All i can check is whether particular package version exists, e.g. "pkg-config --exists python-2.7" works