[patch v3 3/4] build/ruby: use notmuch configure script values for shared lib
authorDavid Bremner <david@tethera.net>
Mon, 1 Jun 2015 07:09:01 +0000 (09:09 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:57 +0000 (14:48 -0700)
26/a5761c1ff3c9750c7de4dd1c627e3a547e98ad [new file with mode: 0644]

diff --git a/26/a5761c1ff3c9750c7de4dd1c627e3a547e98ad b/26/a5761c1ff3c9750c7de4dd1c627e3a547e98ad
new file mode 100644 (file)
index 0000000..6529847
--- /dev/null
@@ -0,0 +1,99 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 097116DE1995\r
+ for <notmuch@notmuchmail.org>; Mon,  1 Jun 2015 00:10:37 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.266\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.266 tagged_above=-999 required=5 tests=[AWL=0.256, \r
+ T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id RArrMa5Sh8_X for <notmuch@notmuchmail.org>;\r
+ Mon,  1 Jun 2015 00:10:35 -0700 (PDT)\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+ [87.98.215.224])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 44E056DE1640\r
+ for <notmuch@notmuchmail.org>; Mon,  1 Jun 2015 00:10:35 -0700 (PDT)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+ 4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+ id 1YzJqx-0007O7-UD; Mon, 01 Jun 2015 07:09:43 +0000\r
+Received: (nullmailer pid 2453 invoked by uid 1000); Mon, 01 Jun 2015\r
+ 07:09:06 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: David Bremner <david@tethera.net>, notmuch@notmuchmail.org\r
+Subject: [patch v3 3/4] build/ruby: use notmuch configure script values for\r
+ shared lib\r
+Date: Mon,  1 Jun 2015 09:09:01 +0200\r
+Message-Id: <1433142542-2307-4-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1433142542-2307-1-git-send-email-david@tethera.net>\r
+References: <1425679073-30439-5-git-send-email-david@tethera.net>\r
+ <1433142542-2307-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Mon, 01 Jun 2015 07:10:37 -0000\r
+\r
+This is supposed to help build on systems like MacOS with different\r
+conventions for naming shared libraries. We have already computed the\r
+relevant names, so doing it again in ruby seems like a bad idea.\r
+---\r
+ bindings/Makefile.local  |  1 +\r
+ bindings/ruby/extconf.rb | 13 +++----------\r
+ 2 files changed, 4 insertions(+), 10 deletions(-)\r
+\r
+diff --git a/bindings/Makefile.local b/bindings/Makefile.local\r
+index 2ad0b86..8b1ff83 100644\r
+--- a/bindings/Makefile.local\r
++++ b/bindings/Makefile.local\r
+@@ -7,6 +7,7 @@ ruby-bindings: lib/libnotmuch.so\r
+ ifeq ($(HAVE_RUBY_DEV),1)\r
+       cd $(dir)/ruby && \\r
+               EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \\r
++              LIBNOTMUCH="../../lib/$(LINKER_NAME)" \\r
+               ruby extconf.rb --vendor\r
+       $(MAKE) -C $(dir)/ruby\r
+ else\r
+diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb\r
+index 6d5607e..ddaa684 100644\r
+--- a/bindings/ruby/extconf.rb\r
++++ b/bindings/ruby/extconf.rb\r
+@@ -14,19 +14,12 @@ if ENV['EXTRA_LDFLAGS']\r
+   $LDFLAGS += " " + ENV['EXTRA_LDFLAGS']\r
+ end\r
\r
+-def have_local_library(lib, path, func, headers = nil)\r
+-  checking_for checking_message(func, lib) do\r
+-    lib = File.join(path, lib)\r
+-    if try_func(func, lib, headers)\r
+-      $LOCAL_LIBS += lib\r
+-    end\r
+-  end\r
+-end\r
+-\r
+-if not have_local_library('libnotmuch.so', dir, 'notmuch_database_create', 'notmuch.h')\r
++if not ENV['LIBNOTMUCH']\r
+   exit 1\r
+ end\r
\r
++$LOCAL_LIBS += ENV['LIBNOTMUCH']\r
++\r
+ # Create Makefile\r
+ dir_config('notmuch')\r
+ create_makefile('notmuch')\r
+-- \r
+2.1.4\r
+\r