From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 052606DE0008 for ; Thu, 20 Apr 2017 02:47:23 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: 0.332 X-Spam-Level: X-Spam-Status: No, score=0.332 tagged_above=-999 required=5 tests=[AWL=0.341, HEADER_FROM_DIFFERENT_DOMAINS=0.001, T_RP_MATCHES_RCVD=-0.01] 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 F_2CFH2yHsKu for ; Thu, 20 Apr 2017 02:47:20 -0700 (PDT) X-Greylist: delayed 453 seconds by postgrey-1.36 at arlo; Thu, 20 Apr 2017 02:47:20 PDT Received: from danbala.ifoer.tuwien.ac.at (danbala.ifoer.tuwien.ac.at [128.130.168.114]) by arlo.cworth.org (Postfix) with ESMTPS id 92AB46DE0005 for ; Thu, 20 Apr 2017 02:47:20 -0700 (PDT) Received: by danbala.ifoer.tuwien.ac.at (Postfix, from userid 116) id 1DB84A50D; Thu, 20 Apr 2017 11:39:44 +0200 (CEST) From: Thomas Klausner To: notmuch@notmuchmail.org Cc: Jonathan Perkin Subject: notmuch-0.24.1: missing header include Message-ID: <20170420093944.xpkczqnztv4nwx7p@danbala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="e6vgutccywlcyacb" Content-Disposition: inline X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Thu, 20 Apr 2017 09:47:23 -0000 X-Original-Date: Thu, 20 Apr 2017 11:39:44 +0200 X-List-Received-Date: Thu, 20 Apr 2017 09:47:23 -0000 --e6vgutccywlcyacb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi! On Solaris, notmuch-0.24.1 does not compile because lib/message.cc uses index(3) but does not include strings.h. Please apply the attached patch or a similar one. Thanks, Thomas --e6vgutccywlcyacb Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-lib_notmuch-private.h" $NetBSD: patch-lib_notmuch-private.h,v 1.1 2017/04/20 09:06:34 jperkin Exp $ Include strings.h for index(3). --- lib/notmuch-private.h.orig 2017-04-01 12:29:38.000000000 +0000 +++ lib/notmuch-private.h @@ -38,6 +38,7 @@ NOTMUCH_BEGIN_DECLS #include #include #include +#include #include #include #include --e6vgutccywlcyacb--