From owner-freebsd-stable@FreeBSD.ORG Fri Jan 23 09:07:29 2004 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A278616A4D5 for ; Fri, 23 Jan 2004 09:07:29 -0800 (PST) Received: from out005.verizon.net (out005pub.verizon.net [206.46.170.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E16943D9F for ; Fri, 23 Jan 2004 09:06:39 -0800 (PST) (envelope-from cswiger@mac.com) Received: from mac.com ([68.161.129.47]) by out005.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040123170638.VAQR2677.out005.verizon.net@mac.com>; Fri, 23 Jan 2004 11:06:38 -0600 Message-ID: <40115486.5030300@mac.com> Date: Fri, 23 Jan 2004 12:06:14 -0500 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Andrey Sharandakov References: <40113E8E.4040608@bis.midco.net> <005b01c3e1c8$be372660$1a86c2d9@ashway> <20040123165048.GA87436@xor.obsecurity.org> <00a101c3e1d2$228948b0$1a86c2d9@ashway> In-Reply-To: <00a101c3e1d2$228948b0$1a86c2d9@ashway> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out005.verizon.net from [68.161.129.47] at Fri, 23 Jan 2004 11:06:38 -0600 cc: freebsd-stable@freebsd.org Subject: Re: make.conf X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jan 2004 17:07:29 -0000 Andrey Sharandakov wrote: > That's OK! > > What does this option mean? > NOLIBC_R (re-entrant version of libc) - What is it? libc is the basic C library which provides the routines expected by ANSI/POSIX. A re-entrant version of a library is one that is thread-safe. LIBC_R is presumably required by programs which use POSIX threads, aka pthreads. -- -Chuck