From owner-freebsd-stable@FreeBSD.ORG Sun Feb 15 16:58:41 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D8CA106567A for ; Sun, 15 Feb 2009 16:58:41 +0000 (UTC) (envelope-from ahopstetter@gmail.com) Received: from mail-qy0-f12.google.com (mail-qy0-f12.google.com [209.85.221.12]) by mx1.freebsd.org (Postfix) with ESMTP id 0408B8FC1A for ; Sun, 15 Feb 2009 16:58:40 +0000 (UTC) (envelope-from ahopstetter@gmail.com) Received: by qyk5 with SMTP id 5so1826931qyk.19 for ; Sun, 15 Feb 2009 08:58:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=jrYhpCq9j0hhBfm2+Ox6Lxx3MrJ8ivWSDp+n5knAw4A=; b=GP+KUxTeY/Vquklh1yFNz+Lc4P+yeaY5PJlQWJoiUqNPpUuaiWfgKbKXiYqbdn0SNS b0TCqhQPd12JnWIdokEJjGR8XwVGDUiBqRvSpuiStn0Zdc/j3+qcFjzt+Cd3FpMANCGD eQzHRNKA5pl0c0ZrAi+NsK9Wxm5FL5X+aW13c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=Ckp6SbwFH5M3gjqNCAelu0mlma0ziECINl2CSvBYDUbBADTWS1A++naguj/Qgh7f0q n1GPAR1N4GrGFl/sWy1M7VSPKiELZgdgIHmICxGYsVa2w5MEYdKfiQZWNVyqXgui3dqG Pxs2B4PTye4qpZrVUM9fbGAJbEk4qXnz3f1iM= Received: by 10.224.19.146 with SMTP id a18mr6572271qab.23.1234715869119; Sun, 15 Feb 2009 08:37:49 -0800 (PST) Received: from ?192.168.1.5? (pool-173-65-220-70.tampfl.fios.verizon.net [173.65.220.70]) by mx.google.com with ESMTPS id 4sm5556860yxd.40.2009.02.15.08.37.48 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 15 Feb 2009 08:37:48 -0800 (PST) Message-ID: <499844CF.2090109@gmail.com> Date: Sun, 15 Feb 2009 11:37:35 -0500 From: Adam Hopstetter User-Agent: Thunderbird 2.0.0.19 (X11/20090113) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: RE: Error compiling FreeBSD-Stable with MFC'ed iconv locking X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Feb 2009 16:58:41 -0000 Hello, I also had the exact same issue compiling FreeBSD-7.1-stable on 2/14/2009. If you implement the described patch ... freebsd-7.1-stable will them fail to build world with an error in pf/ftp-proxy.c, complaining about a redefinition of 'session'. This is b/c sys/proc.h also defines 'session' ... so there treading on each other's namespace .... Below is an updated patch to compile kernel and world with kernel libiconv support. --- sys/sys/sx.h.orig 2009-02-14 15:49:28.000000000 -0500 +++ sys/sys/sx.h 2009-02-14 21:38:04.000000000 -0500 @@ -37,6 +37,7 @@ #include #ifdef _KERNEL +#include #include #endif Sincerely, Adam Hopstetter