delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2013/05/04/10:48:07

X-Recipient: archive-cygwin AT delorie DOT com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:message-id:date:from:mime-version:to:subject
:references:in-reply-to:content-type:content-transfer-encoding;
q=dns; s=default; b=G42CYHtPN63p8WPSVh3AGa6ovNzYmf5+sj6h9CIeQM2
f/2FmEL1NBFgPQ9w2u5oUf/Nl7op0M3uhNdOuNvfjb3PecI+AXFqQ/D4D1IICVWA
c/XQQoY54eCyXWsTyupJ1xHQ3rv4MAH2OXgXsm2vlZdPOtpcxzfPKnu22y68HSQg
=
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:message-id:date:from:mime-version:to:subject
:references:in-reply-to:content-type:content-transfer-encoding;
s=default; bh=O7hzjsVtgW+SjOOCwRGaLTjabmI=; b=ZiEyXu538g1mwc5S/
Z+vhMa7TIijszRdgqfpTuaV7dseySThDiXnNljJhJ7oHRfsXRcajW6ulMExoNUsG
HNjxGe9QgyuW2SPUSTIxJ9BWJFkfms0n7odDA4bMEdHYtQhn39+pxht3vQeiffm2
Biy0OoyBofD56FfSil3LDBTEHc=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,SPF_PASS,TW_YG autolearn=ham version=3.3.1
X-Received: by 10.14.111.5 with SMTP id v5mr29458566eeg.27.1367678868250; Sat, 04 May 2013 07:47:48 -0700 (PDT)
Message-ID: <51851F91.80700@gmail.com>
Date: Sat, 04 May 2013 16:47:45 +0200
From: marco atzeri <marco DOT atzeri AT gmail DOT com>
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130328 Thunderbird/17.0.5
MIME-Version: 1.0
To: cygwin AT cygwin DOT com
Subject: Re: git-remote-https missing a shared library
References: <CABWu70EE7vGao67n6KTnoLd--XLcn3vg+69PmGtntwVqCZ-uAQ AT mail DOT gmail DOT com>
In-Reply-To: <CABWu70EE7vGao67n6KTnoLd--XLcn3vg+69PmGtntwVqCZ-uAQ@mail.gmail.com>

Il 5/4/2013 4:24 PM, Daniel R. Grayson ha scritto:
> git-remote-https claims to be missing a shared library, but doesn't
> give its name and ldd doesn't agree.
>
> The work-around is to install libsasl2 manually.  The fix is to make
> git require libsasl2 and to figure out how to get the name of the
> missing library into the error message.
>
> $ git clone --no-checkout https://github.com/Macaulay2/M2 1.6
> Cloning into '1.6'...
> /usr/lib/git-core/git-remote-https.exe: error while loading shared
> libraries: ?: cannot open shared object file: No such file or
> directory
>
> $ ldd /usr/lib/git-core/git-remote-https.exe
ldd is unable to report missing libs
use instead

$ cygcheck  /usr/lib/git-core/git-remote-https.exe
E:\cygwin\lib\git-core\git-remote-https.exe
   E:\cygwin\bin\cygcrypto-0.9.8.dll
     E:\cygwin\bin\cygwin1.dll
       C:\Windows\system32\KERNEL32.dll
         C:\Windows\system32\API-MS-Win-Core-RtlSupport-L1-1-0.dll
         C:\Windows\system32\ntdll.dll
         C:\Windows\system32\KERNELBASE.dll
[cut]
     E:\cygwin\bin\cygz.dll
       E:\cygwin\bin\cyggcc_s-1.dll
   E:\cygwin\bin\cygcurl-4.dll
     E:\cygwin\bin\cygcrypto-1.0.0.dll
     E:\cygwin\bin\cyggssapi-3.dll
       E:\cygwin\bin\cygheimntlm-0.dll
         E:\cygwin\bin\cygkrb5-26.dll
           E:\cygwin\bin\cygasn1-8.dll
             E:\cygwin\bin\cygroken-18.dll
               E:\cygwin\bin\cygcrypt-0.dll
             E:\cygwin\bin\cygcom_err-2.dll
           E:\cygwin\bin\cygwind-0.dll
           E:\cygwin\bin\cyghx509-5.dll
           E:\cygwin\bin\cygintl-8.dll
             E:\cygwin\bin\cygiconv-2.dll
           E:\cygwin\bin\cygsqlite3-0.dll
           E:\cygwin\bin\cygheimbase-1.dll
     E:\cygwin\bin\cygidn-11.dll
     E:\cygwin\bin\cyglber-2-4-2.dll
     E:\cygwin\bin\cygldap-2-4-2.dll
       E:\cygwin\bin\cygsasl2-2.dll
       E:\cygwin\bin\cygssl-1.0.0.dll
     E:\cygwin\bin\cygssh2-1.dll

cygsasl2-2.dll is a dependence of cygldap-2-4-2.dll


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019