From owner-freebsd-stable@FreeBSD.ORG Mon Feb 17 14:56:41 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFBD769E for ; Mon, 17 Feb 2014 14:56:41 +0000 (UTC) Received: from mailrelay009.isp.belgacom.be (mailrelay009.isp.belgacom.be [195.238.6.176]) by mx1.freebsd.org (Postfix) with ESMTP id 769421A76 for ; Mon, 17 Feb 2014 14:56:41 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnIGAOMhAlNbsItn/2dsb2JhbABZgwY4wA+BHhd0giUBAQU6HCMQCw4KCSUPKh4GLoduActiF48BB4Q4AQOYK4EzkHGDLjs Received: from 103.139-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.139.103]) by relay.skynet.be with ESMTP; 17 Feb 2014 15:56:36 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.8/8.14.8) with ESMTP id s1HEuZmb012667; Mon, 17 Feb 2014 15:56:35 +0100 (CET) (envelope-from tijl@FreeBSD.org) Date: Mon, 17 Feb 2014 15:56:35 +0100 From: Tijl Coosemans To: Alexander Panyushkin Subject: Re: converters/php55-iconv in FreeBSD 10 Message-ID: <20140217155635.646606ef@kalimero.tijl.coosemans.org> In-Reply-To: <5301F7EE.6050904@gmail.com> References: <52FE26FC.3070708@gmail.com> <20140214160455.26d39e9d@kalimero.tijl.coosemans.org> <53011CA2.2020205@gmail.com> <20140216230658.23403034@kalimero.tijl.coosemans.org> <5301D731.30308@gmail.com> <20140217110104.48297f5c@kalimero.tijl.coosemans.org> <5301E569.60104@gmail.com> <20140217115701.15df2096@kalimero.tijl.coosemans.org> <5301F7EE.6050904@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:56:41 -0000 On Mon, 17 Feb 2014 13:52:14 +0200 Alexander Panyushkin wrote: > On 17.02.2014 12:57, Tijl Coosemans wrote: >> Try to find the file that defines O_NOATIME: >> >> grep -Rl O_NOATIME /usr/include /usr/lib /usr/local/include /usr/local/lib > > Nothing > > # grep -Rl O_NOATIME /usr/include /usr/lib /usr/local/include > /usr/local/lib > /usr/local/lib/perl5/5.16/mach/auto/Fcntl/Fcntl.so > /usr/local/lib/perl5/5.16/mach/Fcntl.pm > egrep: warning: /usr/local/lib/libxul/bin: recursive directory loop > egrep: > /usr/local/lib/firefox/browser/extensions/{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}: > No such file or directory > > > I rebuilt libiconv with Clang. > > If build with otions: > CFLAGS= -O2 -march=athlon64-sse3 -mtune=athlon64-sse3 -pipe > -Qunused-arguments -Qunused-parameter -Wformat -Wformat-security > port build is Ok > > If build with otions: > CFLAGS= -Oz -march=athlon64-sse3 -mtune=athlon64-sse3 -pipe > -Qunused-arguments -Qunused-parameter -Wformat -Wformat-security > ^^^^^^^^^^ > port build fails Ok, the solution is to add USE_CSTD=gnu89 to the port Makefile. I'll file a PR for that.