From owner-freebsd-ports@FreeBSD.ORG Mon Jul 16 23:33:33 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BE5B1065670 for ; Mon, 16 Jul 2012 23:33:33 +0000 (UTC) (envelope-from phil.stone@gmx.com) Received: from smtp.smtpout.orange.fr (smtp10.smtpout.orange.fr [80.12.242.132]) by mx1.freebsd.org (Postfix) with ESMTP id 3FC4E8FC15 for ; Mon, 16 Jul 2012 23:33:33 +0000 (UTC) Received: from Obelix ([82.122.128.40]) by mwinf5d45 with ME id bBRv1j0050sRsNi03BRvHM; Tue, 17 Jul 2012 01:25:56 +0200 Message-ID: X-Mailer: Ultrafunk Popcorn 1.95 (31-August-2009) X-Priority: 3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=iso-8859-1 Date: Tue, 17 Jul 2012 01:25:54 +0200 From: Phil Stone To: freebsd-ports@freebsd.org Subject: unbound-1.4.17 fails to compile with threads support X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jul 2012 23:33:33 -0000 It seems that port dns/unbound compiles without threads support regadless of port options. In dns/unbound/Makefile:91 .if empty(${PORT_OPTIONS:MTHREADS}) CONFIGURE_ARGS+=--without-pthreads .endif sets --without-pthreads regadless of THREADS option. Changing to: .if !${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+=--without-pthreads .endif provides the correct behavior. Best Regards, Phil