From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS4713 221.184.0.0/13 X-Spam-Status: No, score=-3.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,RP_MATCHES_RCVD,SPF_PASS,T_DKIM_INVALID shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from neon.ruby-lang.org (neon.ruby-lang.org [221.186.184.75]) by dcvr.yhbt.net (Postfix) with ESMTP id E5498202DD for ; Fri, 20 Oct 2017 02:37:40 +0000 (UTC) Received: from neon.ruby-lang.org (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 307571209F3; Fri, 20 Oct 2017 11:37:38 +0900 (JST) Received: from o1678948x4.outbound-mail.sendgrid.net (o1678948x4.outbound-mail.sendgrid.net [167.89.48.4]) by neon.ruby-lang.org (Postfix) with ESMTPS id 9D07C1209F3 for ; Fri, 20 Oct 2017 11:37:35 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sendgrid.me; h=from:to:references:subject:mime-version:content-type:content-transfer-encoding:list-id; s=smtpapi; bh=L0+CMZtdJNQGkZZCz7AXeOdJ36g=; b=WpKIf8jMiIcbobVVRO IzsKocVNnsDsMTliZsMBk+lcPT73EoE1dFGjz+0KPIUY4SrKigbmfUoHcUoJPeAR hiJ6wJBafZix/tIBW51TK6mT6Kgw+Md3EpFL8b01Q7dwqa78ZG1Q5k/yTZ4heIaH auUEtO0JYTiBAZ+26Exj1rjIA= Received: by filter0021p3iad2.sendgrid.net with SMTP id filter0021p3iad2-14822-59E9616C-E 2017-10-20 02:37:32.140579635 +0000 UTC Received: from herokuapp.com (ec2-54-157-23-68.compute-1.amazonaws.com [54.157.23.68]) by ismtpd0009p1iad2.sendgrid.net (SG) with ESMTP id HdK9oqu8RhK2EibflIUpNw for ; Fri, 20 Oct 2017 02:37:32.123 +0000 (UTC) Date: Fri, 20 Oct 2017 02:37:32 +0000 (UTC) From: hsbt@ruby-lang.org To: ruby-core@ruby-lang.org Message-ID: References: Mime-Version: 1.0 X-Redmine-MailingListIntegration-Message-Ids: 58524 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 13653 X-Redmine-Issue-Author: hsbt X-Redmine-Issue-Assignee: hsbt X-Redmine-Sender: hsbt X-Mailer: Redmine X-Redmine-Host: bugs.ruby-lang.org X-Redmine-Site: Ruby Issue Tracking System X-Auto-Response-Suppress: All Auto-Submitted: auto-generated X-SG-EID: ync6xU2WACa70kv/Ymy4QrNMhiuLXJG8OTL2vJD1yS4Ag+/4+qrhftHJihj0RHMhS7QpTaOyRaOkGR xruMIpHyYxri26MqGIgru6LYlU/Jr1QbBRnTleaSyq6h4ZXSK+CT1tn5ACdwF4qi/hOFdiTePIoiaw sj4StNIsCk/XuKtmWPdl0mVQc6cwN8S06v5j3Q+H47sbjuIUQuA91H8ArA== X-ML-Name: ruby-core X-Mail-Count: 83416 Subject: [ruby-core:83416] [Ruby trunk Feature#13653] Bundled zlib helper X-BeenThere: ruby-core@ruby-lang.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Ruby developers List-Id: Ruby developers List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ruby-core-bounces@ruby-lang.org Sender: "ruby-core" Issue #13653 has been updated by hsbt (Hiroshi SHIBATA). Target version set to next minor To. shyouhei Thanks for your explanation. I updated my pull request. It only download and add zlib source files to ruby package(like tar ball) https://patch-diff.githubusercontent.com/raw/ruby/ruby/pull/1638.diff I try to this helper to ruby-build or add this feature to Ruby 2.6. ---------------------------------------- Feature #13653: Bundled zlib helper https://bugs.ruby-lang.org/issues/13653#change-67381 * Author: hsbt (Hiroshi SHIBATA) * Status: Assigned * Priority: Normal * Assignee: hsbt (Hiroshi SHIBATA) * Target version: next minor ---------------------------------------- I created experimentally implementation for zlib-binding helper of bundled build. * https://github.com/ruby/ruby/pull/1638 * https://patch-diff.githubusercontent.com/raw/ruby/ruby/pull/1638.patch I also maintain ruby-build that is multi-platform build wrapper for ruby. I often got build failure report caused to missing zlib headers. examples are here. * https://github.com/rbenv/ruby-build/issues/832 * https://github.com/rbenv/ruby-build/issues/780 I hope to resolve this situation for ruby users. my patch make to build zlib-binding with bundled zlib sources. It only enabled when It was given `--enable-bundled-zlib` option with `configure` phase. -- https://bugs.ruby-lang.org/