From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10568 Path: news.gmane.org!.POSTED!not-for-mail From: Junio C Hamano Newsgroups: gmane.comp.version-control.git,gmane.linux.lib.musl.general Subject: Re: [musl] Re: Regression: git no longer works with musl libc's regex impl Date: Tue, 04 Oct 2016 15:48:37 -0700 Message-ID: References: <20161004150848.GA7949@brightrain.aerifal.cx> <20161004152722.ex2nox43oj5ak4yi@sigill.intra.peff.net> <20161004154045.GT19318@brightrain.aerifal.cx> <20161005090625.683fdbbfac8164125dee6469@gmail.com> <20161004223322.GE19318@brightrain.aerifal.cx> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1475621338 32254 195.159.176.226 (4 Oct 2016 22:48:58 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 4 Oct 2016 22:48:58 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) Cc: James B , musl@lists.openwall.com, Johannes Schindelin , Jeff King , git@vger.kernel.org To: Rich Felker Original-X-From: git-owner@vger.kernel.org Wed Oct 05 00:48:54 2016 Return-path: Envelope-to: gcvg-git-2@m.gmane.org Original-Received: from vger.kernel.org ([209.132.180.67]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1brYVw-0006de-7K for gcvg-git-2@m.gmane.org; Wed, 05 Oct 2016 00:48:44 +0200 Original-Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752075AbcJDWsn (ORCPT ); Tue, 4 Oct 2016 18:48:43 -0400 Original-Received: from pb-smtp1.pobox.com ([64.147.108.70]:52007 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751512AbcJDWsm (ORCPT ); Tue, 4 Oct 2016 18:48:42 -0400 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 9C6D344AC6; Tue, 4 Oct 2016 18:48:40 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=bW7ZI85mFFQpQVFs5FUJiwChowM=; b=sd016K nD09p1wVyGWoKWkTr130g+ooYJ3RMBCrdF1t6KVrmRlW1OBgbCm4kbo7xn3p46lb iih6tt6DP+oho9g8xfodxPobF6KXxx1wi4VDTMbjqD1SF8M8OHlzec3XhJDxEZtz EQ+mO/k1PHotch/SM+3LQG8iKtjdXO65xssfE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=NzXreRBUMeZfw7eGYbZvjJ6RSCY7LGc9 f8FPCCMS3mL1eQlRLdndpaKrS//9lWxL1L+J840Pda7Sgn+HlDk+PaijwYtXPefe DFerzFM6jNOCtx6PdA0GIxdPcx/5sF7pn5JlkPa67D5tqtx60zJUydwlM+TuQrfc AIMstT6RQ0Q= Original-Received: from pb-smtp1.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp1.pobox.com (Postfix) with ESMTP id 927F944AC5; Tue, 4 Oct 2016 18:48:40 -0400 (EDT) Original-Received: from pobox.com (unknown [104.132.0.95]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by pb-smtp1.pobox.com (Postfix) with ESMTPSA id E422844AC3; Tue, 4 Oct 2016 18:48:39 -0400 (EDT) In-Reply-To: <20161004223322.GE19318@brightrain.aerifal.cx> (Rich Felker's message of "Tue, 4 Oct 2016 18:33:22 -0400") X-Pobox-Relay-ID: B18725D2-8A84-11E6-9CF9-F99D12518317-77302942!pb-smtp1.pobox.com Original-Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Xref: news.gmane.org gmane.comp.version-control.git:306158 gmane.linux.lib.musl.general:10568 Archived-At: Rich Felker writes: > This is especially unfriendly when the semantics of the switch come > across, at least to some users, as "your system regex is incomplete" > rather than "git can't use it because git depends on nonstandard > extensions". The latter is exactly what Makefile patch that brought this change says, I think. # Define NO_REGEX if your C library lacks regex support with REG_STARTEND # feature. Before the series updated the message to the above, we used to say: # Define NO_REGEX if you have no or inferior regex support in your C library. which _was_ unfair to those who needed to set NO_REGEX for whatever reason. It was totally unclear "inferior" relative to what standard the message was passing its harsh judgement on your C library.