From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25369 invoked by alias); 25 May 2017 21:11:34 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 25351 invoked by uid 89); 25 May 2017 21:11:33 -0000 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 Received: from mail-wm0-f49.google.com (HELO mail-wm0-f49.google.com) (74.125.82.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 25 May 2017 21:11:32 +0000 Received: by mail-wm0-f49.google.com with SMTP id b84so107451048wmh.0 for ; Thu, 25 May 2017 14:11:35 -0700 (PDT) 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) Received: from [192.168.1.6] (79-67-178-202.dynamic.dsl.as9105.com. [79.67.178.202]) by smtp.gmail.com with ESMTPSA id 1sm13775820wrw.32.2017.05.25.14.11.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 25 May 2017 14:11:32 -0700 (PDT) From: Richard H Lee Subject: Memcache/d (Orig: Re: Composer segfault on multiple configurations) To: cygwin@cygwin.com References: Message-ID: Date: Thu, 25 May 2017 21:21:00 -0000 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 X-SW-Source: 2017-05/txt/msg00420.txt.bz2 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