From owner-svn-src-head@freebsd.org Wed Dec 21 02:04:40 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D43DC89CBC; Wed, 21 Dec 2016 02:04:40 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-wj0-f194.google.com (mail-wj0-f194.google.com [209.85.210.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE3631E69; Wed, 21 Dec 2016 02:04:39 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-wj0-f194.google.com with SMTP id kp2so30128404wjc.0; Tue, 20 Dec 2016 18:04:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :from:date:message-id:subject:to:cc; bh=O/hLiuIhE+wSQkD9EF4tUgFXJj5+oKh6wGiAOtqqnwQ=; b=W//6+FqQ8wOq68MwZJJrMBS8pa+uxALnSpU9+FOSXLrWTXC0DJsXfvRWw5q+HquWlG sdNOtNoHpV0hcqk/ltq0iROKtb4/Ad0A0Y73TAIiVvrZo6wghd0y6oJs1fL6K45jeGqL KpG1qklluxHfT/TXYOC0YrpNqEdMmKhf4Q00OopGGOGCWbZg2nFEageZRTbnWwuGO93L Tn7+qz6MDt2Ho5G1hZe+SFbC+3NGdjzczXcjVO3kBW7lJAOwGxchucV7HBfaCdz1ELmU dOSFBHAc2uMzD2cF/Xhs1arZQPBnOxq4E34K/yyWh4kmW0EfNchrb52VhtTdEgDdEM4x YRLA== X-Gm-Message-State: AIkVDXLZf2eT5WjAwuJOuE0JhMjAz3NVZ6Ho/93kXv7Wcv8AHCjcHsu54uNvQwJmvZze1w== X-Received: by 10.194.66.101 with SMTP id e5mr1877598wjt.172.1482285872328; Tue, 20 Dec 2016 18:04:32 -0800 (PST) Received: from mail-wj0-f169.google.com (mail-wj0-f169.google.com. [209.85.210.169]) by smtp.gmail.com with ESMTPSA id f134sm24767493wmf.19.2016.12.20.18.04.32 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 20 Dec 2016 18:04:32 -0800 (PST) Received: by mail-wj0-f169.google.com with SMTP id v7so191332702wjy.2; Tue, 20 Dec 2016 18:04:32 -0800 (PST) X-Received: by 10.194.222.202 with SMTP id qo10mr1908171wjc.115.1482285871946; Tue, 20 Dec 2016 18:04:31 -0800 (PST) MIME-Version: 1.0 Reply-To: cem@freebsd.org Received: by 10.194.29.72 with HTTP; Tue, 20 Dec 2016 18:04:31 -0800 (PST) In-Reply-To: References: <201612160144.uBG1ipjW016736@repo.freebsd.org> <49460793.UcUNovQMDa@ralph.baldwin.cx> <1482281779.48539.41.camel@freebsd.org> From: Conrad Meyer Date: Tue, 20 Dec 2016 18:04:31 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r310138 - head/lib/libc/stdio To: Adrian Chadd Cc: src-committers , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Dec 2016 02:04:40 -0000 Hi Adrian, On Tue, Dec 20, 2016 at 5:56 PM, Adrian Chadd wrote: > Here's my reason for removal. > > Plenty of us are looking to be able to build bits of the BSD source > tree as part of other non FreeBSD systems, especially if they're > involved in bootstrapping. Understood, however: > That means that it needs to be compilable > by a non-FreeBSD-modified compiler. Ideally this means we'd stick to > mostly POSIX options source code that we can compile with unmodified > compilers, and we push non-standard stuff into otherly-named > functions. Yeah, this isn't actually a problem. printf("%b", foo) compiles fine with non-modified compilers. Best, Conrad