From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from m0.truegem.net (m0.truegem.net [69.55.228.47]) by sourceware.org (Postfix) with ESMTPS id 49D6E3858D1E for ; Fri, 24 Nov 2023 05:11:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 49D6E3858D1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=maxrnd.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=maxrnd.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 49D6E3858D1E Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=69.55.228.47 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700802666; cv=none; b=dM4EDd00GiK5fVomYdS0ZBgxFG7uT40PHVRTpODGdfkoRnmKmLhY1QppqD3IvhEcG3wTrDG4jVk/mR60zJjjA5J3TMRNzFv4CWZ4nPG/tTl0+Ia3GLB903u5ptZQiF+M4pkpVWgYUGof2+mQfBS6gmFw07lXqvEzgxv3Z7i2qLM= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700802666; c=relaxed/simple; bh=EFMlYsu1hN+gjMwyhp4ORcDG6r3Y170MALttqS97CNE=; h=Subject:To:From:Message-ID:Date:MIME-Version; b=vMK6LXuN5jlqvBsTTgDjTazQcYvR3q50h8ROT9rxFXSkm8vHrJLZ5QWMtqNA/DqyarJxZlYqdw2WDCDQK4l2S9WicXD9EXNsgOdC1mwF38Ug8uT1vG3VlVygn4xMrycPEQveeCo+YtwLuW9/drBIuYc+8Nncv5Sg3QuVuKTkMOQ= ARC-Authentication-Results: i=1; server2.sourceware.org Received: (from daemon@localhost) by m0.truegem.net (8.12.11/8.12.11) id 3AO5B5ou067824 for ; Thu, 23 Nov 2023 21:11:05 -0800 (PST) (envelope-from mark@maxrnd.com) Received: from 50-1-247-226.fiber.dynamic.sonic.net(50.1.247.226), claiming to be "[192.168.4.101]" via SMTP by m0.truegem.net, id smtpdmDWWoi; Thu Nov 23 21:10:56 2023 Subject: Re: inkscape installed but does nothing To: Cygwin References: <1219644356.4008002.1700795338917.ref@mail.yahoo.com> <1219644356.4008002.1700795338917@mail.yahoo.com> From: Mark Geisert Message-ID: <6b44241b-fa2d-9832-b284-f5eefbc4b788@maxrnd.com> Date: Thu, 23 Nov 2023 21:10:55 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0 SeaMonkey/2.49.4 MIME-Version: 1.0 In-Reply-To: <1219644356.4008002.1700795338917@mail.yahoo.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3.4 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,KAM_LAZY_DOMAIN_SECURITY,NICE_REPLY_A,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi John, J.F. Huesman via Cygwin wrote: >>[...my previous info about reproducing the issue elided here...] > I get those same error codes (of course the process ID and thread numbers are different).exception 139 indicates, I think, a missing required file or link. Maybe it's an issue with the cygwin64 installer (setup-x86_64.exe) not including all the necessary files? > The exception occurs at 00007ffaecf324f6 on both our traces, so I grep'd it and that address only occurs in that line, so it's no help (at least not to me) trying to identify what program could be missing. > This is the list I found of required packages for inkscape: > - curl. > - openssh. > - openssl (Net) > - php. > - php-curl. > - php-json. > - php-phar (PHP) > > curl and php (all four) weren't installed. I installed them and made sure openssh and openssl were the most recent versions. > Sadly, I get the exact same error list at the end of the strace output. > I'll go through the list of dependencies on the inkscape package summary page. Hopefully it's something in that list that didn't get installed by the updater. > Thanks for the guidance. John Good to hear my experience duplicates yours. The info I wrote really was intended for somebody who knows inkscape internals on Cygwin, i.e., its maintainer or somebody like him/her. But I later discovered our inkscape is orphaned, so I'm digging a little deeper now. It's not a file that's missing from your system. It has to do with how inkscape was built. One part (or library maybe) of the program refers to some function(s) that is/are supposed to be supplied by another part (or library maybe) as the program is starting up. But it/they aren't supplied. Windows notices this and raises an exception to kill the program. I'm now going through the laborious process of building inkscape on my test system to see if the same issue happens with my build. I'll give an update when I have something to report. Cheers, ..mark