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,SPF_PASS,T_DKIM_INVALID,T_RP_MATCHES_RCVD 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 133DE1FA7B for ; Tue, 13 Jun 2017 12:02:32 +0000 (UTC) Received: from neon.ruby-lang.org (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 6E16E120787; Tue, 13 Jun 2017 21:02:29 +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 E2CBF120784 for ; Tue, 13 Jun 2017 21:02:26 +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=yyoiDCDZMQnrmxBKauvn6slv314=; b=AmAovPnk6HDIGd5DJs ml2KA95UcT5u17UGDnX/dWuxwap+QLBZyMON8enTM7O9sSdYRTp1DDrxlM68YlxH oClcHWXqnzQL0+xn6jXKli8PrJfyOiMYznYftKzJG738AabB3v5eqowWQCPC0Udd rh4DofTz6c0oYOAn1jpP82Fro= Received: by filter0651p1mdw1.sendgrid.net with SMTP id filter0651p1mdw1-2179-593FD42C-2E 2017-06-13 12:01:48.257051349 +0000 UTC Received: from herokuapp.com (ec2-54-226-42-236.compute-1.amazonaws.com [54.226.42.236]) by ismtpd0002p1iad1.sendgrid.net (SG) with ESMTP id _6igOZN6TIqaDD0QoOpwCA for ; Tue, 13 Jun 2017 12:01:48.200 +0000 (UTC) Date: Tue, 13 Jun 2017 12:01:48 +0000 From: hsbt@ruby-lang.org To: ruby-core@ruby-lang.org Message-ID: References: Mime-Version: 1.0 X-Redmine-MailingListIntegration-Message-Ids: 56689 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/Ymy4QrNMhiuLXJG8OTL2vJD1yS7Wxd9m9bXDQ9KQD9RkuTRYTQx37EFbeyXIwa jRJ7nHo99WJWj57tjMG4ews+9lLvJhJPeBBOyoZ5wfUswz81wL18YPLzBeIqP1rmt9qppPAAjo13ed uMP3R1ixG8fz7ieEM0p+cnfX6/AC39LJSOgqiIY1NVsMON6917p3pj+11A== X-ML-Name: ruby-core X-Mail-Count: 81660 Subject: [ruby-core:81660] [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 reported by hsbt (Hiroshi SHIBATA). ---------------------------------------- Feature #13653: Bundled zlib helper https://bugs.ruby-lang.org/issues/13653 * Author: hsbt (Hiroshi SHIBATA) * Status: Open * Priority: Normal * Assignee: hsbt (Hiroshi SHIBATA) * Target version: ---------------------------------------- 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/