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 AAE951FA7B for ; Tue, 13 Jun 2017 13:54:33 +0000 (UTC) Received: from neon.ruby-lang.org (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id B6EF6120788; Tue, 13 Jun 2017 22:54:30 +0900 (JST) Received: from o1678916x28.outbound-mail.sendgrid.net (o1678916x28.outbound-mail.sendgrid.net [167.89.16.28]) by neon.ruby-lang.org (Postfix) with ESMTPS id 26DE5120783 for ; Tue, 13 Jun 2017 22:54: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=eHDaA61dSguH49nfIE25c+0XOZ0=; b=iTUlgGEpancQ1P51Do ET3NOR9EzmRGMIILdHEjDs2JggOJMWmbiUkgQwhmkOOkh6hXp4ZcpiCLVTouLnPm k3nVhn5IABy8ci+eLDmfWLPV4rVP/uZuQDWdQgJnYl+VlcnkR8kU+4/mGzbCMq9P COmx41YEjKcGGehzMnFftf5Bc= Received: by filter0438p1mdw1.sendgrid.net with SMTP id filter0438p1mdw1-16710-593FEE82-5F 2017-06-13 13:54:10.528027281 +0000 UTC Received: from herokuapp.com (ec2-54-226-42-236.compute-1.amazonaws.com [54.226.42.236]) by ismtpd0004p1iad1.sendgrid.net (SG) with ESMTP id PAoNbOZyRvSPDmUBDqFgfg for ; Tue, 13 Jun 2017 13:54:10.581 +0000 (UTC) Date: Tue, 13 Jun 2017 13:54:10 +0000 From: nobu@ruby-lang.org To: ruby-core@ruby-lang.org Message-ID: References: Mime-Version: 1.0 X-Redmine-MailingListIntegration-Message-Ids: 56692 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 13653 X-Redmine-Issue-Author: hsbt X-Redmine-Issue-Assignee: hsbt X-Redmine-Sender: nobu 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/Ymy4QrNMhiuLXJG8OTL2vJD1yS4YD0vvUh6OtiaH9HeyA2o6jVLwMfPRF2Otw9 KardAF8HJGMRbo/1hTUh8TI1PUhooATkDxkyubq2Wikr34n0hEkWv29RH6pmfXNBH1EfZrStpBhK3k VnwyflZaDLjond0vN5bmCRximzTmtzNkQgUaB4t4/eedVUa91Ft69SYXMw== X-ML-Name: ruby-core X-Mail-Count: 81663 Subject: [ruby-core:81663] [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 nobu (Nobuyoshi Nakada). I think `--enable-bundled-zlib` should suppress looking for external libraries and headers, as well as fiddle and psych. ---------------------------------------- Feature #13653: Bundled zlib helper https://bugs.ruby-lang.org/issues/13653#change-65358 * 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/