Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 481616DE0B25 for ; Sat, 13 Jun 2015 13:51:06 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.559 X-Spam-Level: X-Spam-Status: No, score=-0.559 tagged_above=-999 required=5 tests=[AWL=-0.008, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Lz7qjvFgQr4r for ; Sat, 13 Jun 2015 13:51:04 -0700 (PDT) Received: from mail-pd0-f177.google.com (mail-pd0-f177.google.com [209.85.192.177]) by arlo.cworth.org (Postfix) with ESMTPS id 8C46C6DE0B20 for ; Sat, 13 Jun 2015 13:51:04 -0700 (PDT) Received: by pdbki1 with SMTP id ki1so45255925pdb.1 for ; Sat, 13 Jun 2015 13:51:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:in-reply-to:references:user-agent:date:message-id :mime-version:content-type; bh=rLrBOqv7V925lQiuoyOl/zTQw6oQHQU/bCW+P9HevKI=; b=fuv8/EyAQy0dQftTo2ysqVoTR01OU8qFcrcKApB6ow7Y0tTvt2rS+rUaL3F2nFjQ49 1ntdQGAUYgBXHr/ktEi9tEfqiFXfoVnNAwoo7kwtZaWIhIw8gsVkvkQjJSU/3RcTPcU0 MGhdb17lo7cltx4ZxqPWUhB5Lx8i4rbg+3Dhhj80gPxi0fQ++Hcd1AzLV7QDokGQttAr GjVxz21oFvavCJ8XGOnoCIM1eaOGleGt1cEhPYlN7TtVM2Ko+t6o/7OHn0D4anK+aAV1 AwU9Nk9v8WLOb4v31MPKJWqOtxsqNyvDEfUWSwM3Y8Z8EtyiIuCPN08WiKbBhB9Sd/F/ mBvQ== X-Received: by 10.68.211.228 with SMTP id nf4mr34719153pbc.116.1434228664266; Sat, 13 Jun 2015 13:51:04 -0700 (PDT) Received: from localhost ([2601:647:4b02:71ea:b00c:9bdd:d6e7:4a42]) by mx.google.com with ESMTPSA id u8sm7503536pdj.46.2015.06.13.13.51.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 13 Jun 2015 13:51:02 -0700 (PDT) From: Jinwoo Lee To: David Bremner , notmuch@notmuchmail.org Subject: Re: [patch v3 1/4] build: integrate building ruby bindings into notmuch build process In-Reply-To: References: <1425679073-30439-5-git-send-email-david@tethera.net> <1433142542-2307-1-git-send-email-david@tethera.net> <1433142542-2307-2-git-send-email-david@tethera.net> <87zj4415bu.fsf@maritornes.cs.unb.ca> User-Agent: Notmuch/0.20.1+21~g4e79903 (http://notmuchmail.org) Emacs/24.5.1 (x86_64-apple-darwin14.3.0) Date: Sat, 13 Jun 2015 13:51:00 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2015 20:51:06 -0000 On Sat, Jun 13, 2015 at 01:46 PM, Jinwoo Lee wrote: > On Sat, Jun 13, 2015 at 12:59 PM, Jinwoo Lee wrote: >> This breaks Mac OS X. ruby-bindings depends on lib/libnotmuch.so but it >> should be lib/libnotmuch.dylib on OS X. >> >> That makes `make' and `make install' fail. > > Even after I update the dependency to lib/libnotmuch.dylib, building > ruby-bindings fails because I don't have the ruby development tools > installed on my machine. > > I with configure has an option to skip the ruby-bindings build. `configure' seems to try to detect whether the ruby development tools are installed. It thinks I have them but I don't actually, and that's why my build fails. When I manually set 'HAVE_RUBY_DEV = 0' in Makefile.config, everything's fine.