From owner-svn-doc-all@FreeBSD.ORG Mon Nov 3 10:47:19 2014 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84465B20; Mon, 3 Nov 2014 10:47:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7032CC6C; Mon, 3 Nov 2014 10:47:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA3AlJXX023957; Mon, 3 Nov 2014 10:47:19 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA3AlJ2I023956; Mon, 3 Nov 2014 10:47:19 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201411031047.sA3AlJ2I023956@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Mon, 3 Nov 2014 10:47:19 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r45915 - head/en_US.ISO8859-1/books/porters-handbook/porting-dads X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Nov 2014 10:47:19 -0000 Author: ak (ports committer) Date: Mon Nov 3 10:47:18 2014 New Revision: 45915 URL: https://svnweb.freebsd.org/changeset/doc/45915 Log: - Remove obsolete 'Threading Libraries' paragraph Reviewed by: mat, bcr Approved by: mat (portmgr), bcr Differential Revision: https://reviews.freebsd.org/D997 Modified: head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml Mon Nov 3 09:05:31 2014 (r45914) +++ head/en_US.ISO8859-1/books/porters-handbook/porting-dads/chapter.xml Mon Nov 3 10:47:18 2014 (r45915) @@ -321,25 +321,6 @@ exec %%LOCALBASE%%/bin/java -jar %%DATAD CFLAGS+= -DHAVE_SOUND - - Threading Libraries - - The threading library must be linked to the binaries using - a special flag -pthread on &os;. If a port - insists on linking -lpthread directly, patch - it to use -pthread. - - - If building the port errors out with - unrecognized option '-pthread', it may be - desirable to use cc as linker by setting - CONFIGURE_ENV to - LD=${CC}. The -pthread - option is not supported by ld - directly. - - - Feedback