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:from:subject:to:references:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=bx8RFIa2RS1UowcD 7rGotIV1I8++znfcRjayx5X3KRQDdbq8fHO1wHbfgH/HoH0hoiKFQ5ykEsqnS15m X59vN/BkZWiGZIhhkDpVCYB8RWahNjsx7XMTP7g4ptw1+U+QVaWgwIhBsSgJGUzm wV1/QgtOrJjigJG23QsWCMNTNi0= 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:from:subject:to:references:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=egePfL5tL1uG++jofHeKjE eW1zE=; b=Zeq7EQjb0potKRr6t7ap77EM+hsmpeUvsr1+LoPalwUs1/ljnx0dm4 Ou4alqQXU+rzQu78QdpNYkPa8pGTeXLrPeeQ/O2mnRKWnPziSXTbv9lAA/8YEsfh gNntgULKYJbD2VgiFCeLtKX/PmY6MXnpnjyChBWotmpMnNGivK/3c= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=websites, Orig, website X-HELO: mail-wm0-f49.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:subject:to:references:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=1ZRb7uMFXNqeliSg72uDHE7bleml8r3GCRRz20VnO7U=; b=iqK8FjTbXzQ0VxoZX3dojVcKzTGAvIdL7pECmxfzm1mHqNnMLKi4ERNGQ6P/p72fku z1rJdyD46DG2lg9PRzDDnPMaGazw3BeVkygqVYG7Uibzk3rGDTjQTqrwKJvawQB4WjSC sf2Y31RkfaoF6lj59hTAA+eEaYf/tez5J6G+TdXMFZSzbG1lQPkm68gODwictF0SC8Gp SLTXdPno+p5sf5TPOK1xdyWd8N9SQA/ltAj9dAZS+PDjb5q9mqE8bpGbNAQRr0dqfX5m 1C+gTFkrSPgZp4/toz2i/fuIi6hki6fnhfEWkKSQPuhJhpurBdl1ta3CgVjc5qylwhmS Si/g== X-Gm-Message-State: AODbwcA/Ox/yxo91oAY2sH+XKAM4/IZ5gpKUYVFS8tj5JZ872/Cj+OLv UOVAPfMnbHItfLgX9y8= X-Received: by 10.28.94.78 with SMTP id s75mr10669833wmb.4.1495746693164; Thu, 25 May 2017 14:11:33 -0700 (PDT) From: Richard H Lee Subject: Memcache/d (Orig: Re: Composer segfault on multiple configurations) To: cygwin AT cygwin DOT com References: Message-ID: Date: Thu, 25 May 2017 22:11:26 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes On 25/05/2017 08:50, Sky Diver wrote: > Since then I went back in time and installed PHP 5.5.9, PHP 5.6.20 but > the result is the same. PHP 5.5.9, PHP 5.6.2 on Cygwin? Were they even released on Cygwin? > So I might end up following your steps in order to build PHP, hoping I > could enable built-in memcache support while at it (Bash on Ubuntu on > Windows, for example, has memcache and memcached included out of the > box). Unfortunately, I think memcache is a separate package from php and it would not be compiled in by cygports. From what I read memcache is rather unmaintained and should be deprecated. Memcached should be used instead. https://github.com/oerdnj/deb.sury.org/issues/186#issuecomment-186217296 Memcache can't really be compiled for php7. Memcached can be. Taking a quick look at memcached, the memcached server compiles fine on cygwin except for one minor printf statement. Libmemcached, which php-memcached relies upon, requires a little bit more work (it's that whole "undefined symbols in shared libraries" thing). You possibly may want to consider moving your code from memcache to memcached. For most websites memcache/d is optional. If the website detects that memcache/d is not present during setup, it simply does not use it. Usually people just don't use it for development and then turn it on for production. That is unless you specifically want to run memcache/d code on Cygwin. -- 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