From: Vladimir Marek Date: Mon, 20 May 2013 13:19:07 +0000 (+0200) Subject: Re: Re: Re: Solaris support - missing or incompatible functions X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=84b6cc24fb7aaa34e6b4b6dc0f01aa3e1bb4c53f;p=notmuch-archives.git Re: Re: Re: Solaris support - missing or incompatible functions --- diff --git a/22/db198b86fc4dd09ab631232f3d3b98423bf60e b/22/db198b86fc4dd09ab631232f3d3b98423bf60e new file mode 100644 index 000000000..7b0a313f4 --- /dev/null +++ b/22/db198b86fc4dd09ab631232f3d3b98423bf60e @@ -0,0 +1,105 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by olra.theworths.org (Postfix) with ESMTP id 17A7D431FC0 + for ; Mon, 20 May 2013 06:19:33 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -2.299 +X-Spam-Level: +X-Spam-Status: No, score=-2.299 tagged_above=-999 required=5 + tests=[RCVD_IN_DNSWL_MED=-2.3, UNPARSEABLE_RELAY=0.001] + autolearn=disabled +Received: from olra.theworths.org ([127.0.0.1]) + by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id 1zFqpwjpMr54 for ; + Mon, 20 May 2013 06:19:25 -0700 (PDT) +Received: from aserp1040.oracle.com (aserp1040.oracle.com [141.146.126.69]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id EBE39431FBD + for ; Mon, 20 May 2013 06:19:24 -0700 (PDT) +Received: from ucsinet21.oracle.com (ucsinet21.oracle.com [156.151.31.93]) + by aserp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with + ESMTP id r4KDJDEg030262 + (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); + Mon, 20 May 2013 13:19:14 GMT +Received: from userz7022.oracle.com (userz7022.oracle.com [156.151.31.86]) + by ucsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id + r4KDJAZb027301 + (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); + Mon, 20 May 2013 13:19:10 GMT +Received: from abhmt104.oracle.com (abhmt104.oracle.com [141.146.116.56]) + by userz7022.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id + r4KDJ9JL007415; Mon, 20 May 2013 13:19:09 GMT +Received: from vi64-x3-2e-prg06.cz.oracle.com (/10.163.102.127) + by default (Oracle Beehive Gateway v4.0) + with ESMTP ; Mon, 20 May 2013 06:19:09 -0700 +Date: Mon, 20 May 2013 15:19:07 +0200 +From: Vladimir Marek +To: Tomi Ollila +Subject: Re: Re: Re: Solaris support - missing or incompatible functions +Message-ID: <20130520131907.GM17166@vi64-x3-2e-prg06.cz.oracle.com> +References: <1367853362-11846-1-git-send-email-Vladimir.Marek@oracle.com> + <87ehdc9dbh.fsf@nikula.org> + <20130512202145.GA2047@vi64-x3-2e-prg06.cz.oracle.com> + <87bo8g9bbi.fsf@nikula.org> + <20130513050530.GA9899@vi64-x3-2e-prg06.cz.oracle.com> + <87obc8ctng.fsf@zancas.localnet> + <20130520094830.GL17166@vi64-x3-2e-prg06.cz.oracle.com> + +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Disposition: inline +In-Reply-To: +User-Agent: Mutt/ (2012-12-30) +X-Source-IP: ucsinet21.oracle.com [156.151.31.93] +Cc: notmuch@notmuchmail.org +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.13 +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: Mon, 20 May 2013 13:19:33 -0000 + +[...] + +> That must be some setting in (your?) bash: +> +> $ sh -c 'echo '\''foo\nbar'\''' +> foo +> bar +> +> $ bash -c 'echo '\''foo\nbar'\''' +> foo\nbar +> +> $ dash -c 'echo '\''foo\nbar'\''' +> foo +> bar +> +> ... after a bit digging ... +> +> $ bash -c 'shopt -s xpg_echo; echo '\''foo\nbar'\''' +> foo +> bar +> +> $ bash -c 'shopt -u xpg_echo; echo '\''foo\nbar'\''' +> foo\nbar +> +> you could try adding shopt -u xpg_echo into test-lib.sh + + +Nice, that's the one! By quickly looking around Solaris it seems that +it's the default compiled in. + +Thank you +-- + Vlad