From owner-freebsd-stable@FreeBSD.ORG Mon Feb 17 15:21:14 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 B81E37A4; Mon, 17 Feb 2014 15:21:14 +0000 (UTC) Received: from mail-ea0-x22a.google.com (mail-ea0-x22a.google.com [IPv6:2a00:1450:4013:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 228171D04; Mon, 17 Feb 2014 15:21:13 +0000 (UTC) Received: by mail-ea0-f170.google.com with SMTP id g15so5510912eak.1 for ; Mon, 17 Feb 2014 07:21:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:disposition-notification-to:date:from:user-agent :mime-version:to:cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=iFg+9ZwDhY3LgLfHI5KzvnN5xAUQB7QkhkeK4GIyRmw=; b=dnJnStdK0d0YuTbHATS7clk0oR/KaP4XalRjPehVP4fonRARjqTKD+ShrC1UJC6FHd KyPQov7V2yjUPuGDspf+JN0UHOlx3Hyjs0ZPATOjACizb++M1NVyu9GYNBnXTlXQpIwB 6kkIVlEEK9K+fRc2nXz6BRZyzlYF2EyqeTlja+vbEuu9z6fBfy4CbcjdvRL//ZIsOxD7 L0XKtQlRtItQXRa3dMQ3yb8n4NW4Ca24Jqfxv1xjTGA+wa8VtAV6edFFh1QqueD73MNE NQErAh2NebxJwkZdHw5Jox+GEtYDlRKzx5dBiALWYM874+DXjC7O7+3tHZnecnEN3KRC ZpYA== X-Received: by 10.14.29.6 with SMTP id h6mr2550302eea.84.1392650472512; Mon, 17 Feb 2014 07:21:12 -0800 (PST) Received: from scorpion.kiev.ua ([78.111.185.87]) by mx.google.com with ESMTPSA id j41sm58591866eey.15.2014.02.17.07.21.10 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 17 Feb 2014 07:21:11 -0800 (PST) Message-ID: <530228E4.9000400@gmail.com> Date: Mon, 17 Feb 2014 17:21:08 +0200 From: Alexander Panyushkin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Tijl Coosemans Subject: Re: converters/php55-iconv in FreeBSD 10 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> <20140217155635.646606ef@kalimero.tijl.coosemans.org> In-Reply-To: <20140217155635.646606ef@kalimero.tijl.coosemans.org> Content-Type: text/plain; charset=UTF-8; format=flowed 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 15:21:14 -0000 On 17.02.2014 16:56, Tijl Coosemans wrote: > 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. This is working Ok. -- Alexander