From owner-freebsd-current@FreeBSD.ORG Fri Aug 24 08:12:16 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59F62106564A; Fri, 24 Aug 2012 08:12:16 +0000 (UTC) (envelope-from dimitry@andric.com) Received: from tensor.andric.com (cl-327.ede-01.nl.sixxs.net [IPv6:2001:7b8:2ff:146::2]) by mx1.freebsd.org (Postfix) with ESMTP id 17AF38FC08; Fri, 24 Aug 2012 08:12:16 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:e813:6fd8:bb8a:248b] (unknown [IPv6:2001:7b8:3a7:0:e813:6fd8:bb8a:248b]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id A03185C59; Fri, 24 Aug 2012 10:12:14 +0200 (CEST) Message-ID: <50373763.50608@andric.com> Date: Fri, 24 Aug 2012 10:12:19 +0200 From: Dimitry Andric User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120815 Thunderbird/15.0 MIME-Version: 1.0 To: fluffy@FreeBSD.org References: <5036FB4E.4080407@fluffy.khv.ru> In-Reply-To: <5036FB4E.4080407@fluffy.khv.ru> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Dima Panov , current@freebsd.org Subject: Re: build error at rpc code X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 08:12:16 -0000 On 2012-08-24 05:55, Dima Panov wrote: > Does anybody get same error at buildworld with recent -current? ... > In file included from /usr/src/lib/libc/../../include/rpc/rpc.h:76: > /usr/src/lib/libc/../../include/rpc/rpcb_clnt.h:69:8: error: unknown > type name 'rpcblist' > extern rpcblist *rpcb_getmaps(const struct netconfig *, const char *); You are most likely setting CPP as follows: CPP=clang -E Don't do that, use the following instead: CPP=clang-cpp If there is no clang-cpp symlink in /usr/bin yet, just make it manually for now. It will also be created by installworld.