--- /dev/null
+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 olra.theworths.org (Postfix) with ESMTP id F401B431FD2\r
+ for <notmuch@notmuchmail.org>; Fri, 6 Mar 2015 13:59:36 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 2.438\r
+X-Spam-Level: **\r
+X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
+ tests=[DNS_FROM_AHBL_RHSBL=2.438] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+ by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id AQhpaw6y13ZN for <notmuch@notmuchmail.org>;\r
+ Fri, 6 Mar 2015 13:59:35 -0800 (PST)\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+ [87.98.215.224])\r
+ (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+ (No client certificate requested)\r
+ by olra.theworths.org (Postfix) with ESMTPS id 6D772431FCF\r
+ for <notmuch@notmuchmail.org>; Fri, 6 Mar 2015 13:59:31 -0800 (PST)\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 1YU0Gg-0000RV-B4; Fri, 06 Mar 2015 21:58:50 +0000\r
+Received: (nullmailer pid 30537 invoked by uid 1000); Fri, 06 Mar 2015\r
+ 21:57:57 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v2 2/4] build/ruby: make use of -Wl,--no-undefined\r
+ configurable\r
+Date: Fri, 6 Mar 2015 22:57:51 +0100\r
+Message-Id: <1425679073-30439-3-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1425679073-30439-1-git-send-email-david@tethera.net>\r
+References: <1420114600-28396-6-git-send-email-david@tethera.net>\r
+ <1425679073-30439-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\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: Fri, 06 Mar 2015 21:59:38 -0000\r
+\r
+In particular this is supposed to help build on systems (presumably\r
+using a non-gnu ld) where this flag is not available.\r
+---\r
+ bindings/Makefile.local | 4 +++-\r
+ bindings/ruby/extconf.rb | 5 +++--\r
+ configure | 13 +++++++++++++\r
+ 3 files changed, 19 insertions(+), 3 deletions(-)\r
+\r
+diff --git a/bindings/Makefile.local b/bindings/Makefile.local\r
+index 6ed1344..210055f 100644\r
+--- a/bindings/Makefile.local\r
++++ b/bindings/Makefile.local\r
+@@ -5,7 +5,9 @@ dir := bindings\r
+ # force the shared library to be build\r
+ ruby-bindings: lib/libnotmuch.so\r
+ ifeq ($(HAVE_RUBY_DEV),1)\r
+- cd $(dir)/ruby && ruby extconf.rb --vendor\r
++ cd $(dir)/ruby && \\r
++ EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \\r
++ ruby extconf.rb --vendor\r
+ $(MAKE) -C $(dir)/ruby\r
+ else\r
+ @echo Missing dependency, skipping ruby bindings\r
+diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb\r
+index 6160db2..6d5607e 100644\r
+--- a/bindings/ruby/extconf.rb\r
++++ b/bindings/ruby/extconf.rb\r
+@@ -10,8 +10,9 @@ dir = File.join('..', '..', 'lib')\r
+ # includes\r
+ $INCFLAGS = "-I#{dir} #{$INCFLAGS}"\r
+ \r
+-# make sure there are no undefined symbols\r
+-$LDFLAGS += ' -Wl,--no-undefined'\r
++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
+diff --git a/configure b/configure\r
+index 3ca9bed..409bb60 100755\r
+--- a/configure\r
++++ b/configure\r
+@@ -722,6 +722,16 @@ else\r
+ as_needed_ldflags=""\r
+ fi\r
+ \r
++printf "Checking for -Wl,--no-undefined... "\r
++if ${CC} -Wl,--no-undefined -o minimal minimal.c >/dev/null 2>&1\r
++then\r
++ printf "Yes.\n"\r
++ no_undefined_ldflags="-Wl,--no-undefined"\r
++else\r
++ printf "No (nothing to worry about).\n"\r
++ no_undefined_ldflags=""\r
++fi\r
++\r
+ WARN_CXXFLAGS=""\r
+ printf "Checking for available C++ compiler warning flags... "\r
+ for flag in -Wall -Wextra -Wwrite-strings; do\r
+@@ -926,6 +936,9 @@ RPATH_LDFLAGS = ${rpath_ldflags}\r
+ # Flags needed to have linker link only to necessary libraries\r
+ AS_NEEDED_LDFLAGS = ${as_needed_ldflags}\r
+ \r
++# Flags to have the linker flag undefined symbols in object files\r
++NO_UNDEFINED_LDFLAGS = ${no_undefined_ldflags}\r
++\r
+ # Whether valgrind header files are available\r
+ HAVE_VALGRIND = ${have_valgrind}\r
+ \r
+-- \r
+2.1.4\r
+\r