--- /dev/null
+Return-Path: <blakej@foo.net>\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 1B87D431FBC\r
+ for <notmuch@notmuchmail.org>; Tue, 13 Nov 2012 18:10:14 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+ 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 INh8C5LbKs4c for <notmuch@notmuchmail.org>;\r
+ Tue, 13 Nov 2012 18:10:12 -0800 (PST)\r
+Received: from foo.net (70-36-235-136.dsl.static.sonic.net [70.36.235.136])\r
+ (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
+ (No client certificate requested)\r
+ by olra.theworths.org (Postfix) with ESMTPS id 5FE51431FAF\r
+ for <notmuch@notmuchmail.org>; Tue, 13 Nov 2012 18:10:11 -0800 (PST)\r
+Received: from foo.net (localhost [127.0.0.1])\r
+ by foo.net (8.14.5+Sun/8.14.5) with ESMTP id qAE2A9Wg018901;\r
+ Tue, 13 Nov 2012 18:10:09 -0800 (PST)\r
+Received: (from blakej@localhost)\r
+ by foo.net (8.14.5+Sun/8.14.5/Submit) id qAE2A94x018897;\r
+ Tue, 13 Nov 2012 18:10:09 -0800 (PST)\r
+From: Blake Jones <blakej@foo.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v3 03/10] gethostbyname: check for libnsl (Solaris support)\r
+Date: Tue, 13 Nov 2012 18:09:58 -0800\r
+Message-Id: <1352859005-18631-4-git-send-email-blakej@foo.net>\r
+X-Mailer: git-send-email 1.7.3.2\r
+In-Reply-To: <1352859005-18631-1-git-send-email-blakej@foo.net>\r
+References: <1352859005-18631-1-git-send-email-blakej@foo.net>\r
+X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2\r
+ (foo.net [127.0.0.1]); Tue, 13 Nov 2012 18:10:09 -0800 (PST)\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: Wed, 14 Nov 2012 02:10:14 -0000\r
+\r
+Add a check to "configure" to see whether -lnsl is needed for programs\r
+that are using gethostbyname(). This change also adds the file\r
+"compat/check_ghbn.c", which configure uses to perform its check.\r
+---\r
+ compat/check_ghbn.c | 9 +++++++++\r
+ configure | 17 ++++++++++++++++-\r
+ 2 files changed, 25 insertions(+), 1 deletions(-)\r
+ create mode 100644 compat/check_ghbn.c\r
+\r
+diff --git a/compat/check_ghbn.c b/compat/check_ghbn.c\r
+new file mode 100644\r
+index 0000000..4858d5c\r
+--- /dev/null\r
++++ b/compat/check_ghbn.c\r
+@@ -0,0 +1,9 @@\r
++#include <stdio.h>\r
++#include <netdb.h>\r
++\r
++int main()\r
++{\r
++ (void) gethostbyname(NULL);\r
++\r
++ return (0);\r
++}\r
+diff --git a/configure b/configure\r
+index d153f57..9707f11 100755\r
+--- a/configure\r
++++ b/configure\r
+@@ -534,6 +534,17 @@ else\r
+ fi\r
+ rm -f compat/check_asctime\r
+ \r
++printf "Checking whether libnsl is needed for gethostbyname... "\r
++if ${CC} -o compat/check_ghbn "$srcdir"/compat/check_ghbn.c > /dev/null 2>&1\r
++then\r
++ printf "No.\n"\r
++ libnsl_ldflags=""\r
++else\r
++ printf "Yes.\n"\r
++ libnsl_ldflags="-lnsl"\r
++fi\r
++rm -f compat/check_ghbn\r
++\r
+ printf "int main(void){return 0;}\n" > minimal.c\r
+ \r
+ printf "Checking for rpath support... "\r
+@@ -723,6 +734,9 @@ GMIME_LDFLAGS = ${gmime_ldflags}\r
+ TALLOC_CFLAGS = ${talloc_cflags}\r
+ TALLOC_LDFLAGS = ${talloc_ldflags}\r
+ \r
++# Flags needed to get gethostbyname() at link time\r
++LIBNSL_LDFLAGS = ${libnsl_ldflags}\r
++\r
+ # Flags needed to have linker set rpath attribute\r
+ RPATH_LDFLAGS = ${rpath_ldflags}\r
+ \r
+@@ -757,5 +771,6 @@ CONFIGURE_CXXFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS) \\\r
+ -DHAVE_STRCASESTR=\$(HAVE_STRCASESTR) \\\r
+ -DSTD_GETPWUID=\$(STD_GETPWUID) \\\r
+ -DSTD_ASCTIME=\$(STD_ASCTIME)\r
+-CONFIGURE_LDFLAGS = \$(GMIME_LDFLAGS) \$(TALLOC_LDFLAGS) \$(XAPIAN_LDFLAGS)\r
++CONFIGURE_LDFLAGS = \$(GMIME_LDFLAGS) \$(TALLOC_LDFLAGS) \$(XAPIAN_LDFLAGS) \\\r
++ \$(LIBNSL_LDFLAGS)\r
+ EOF\r
+-- \r
+1.7.3.2\r
+\r