From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 24 14:41:55 2007 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A8AA16A46B; Sun, 24 Jun 2007 14:41:55 +0000 (UTC) (envelope-from root@serene.no-ip.org) Received: from eastrmmtao103.cox.net (eastrmmtao103.cox.net [68.230.240.9]) by mx1.freebsd.org (Postfix) with ESMTP id C40F813C4B8; Sun, 24 Jun 2007 14:41:54 +0000 (UTC) (envelope-from root@serene.no-ip.org) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao103.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20070624140119.BPPM14045.eastrmmtao103.cox.net@eastrmimpo01.cox.net>; Sun, 24 Jun 2007 10:01:19 -0400 Received: from serene.no-ip.org ([72.200.17.85]) by eastrmimpo01.cox.net with bizsmtp id FS1J1X0021q7YRk0000000; Sun, 24 Jun 2007 10:01:18 -0400 Received: from serene.no-ip.org (localhost [127.0.0.1]) by serene.no-ip.org (8.14.1/8.14.1) with ESMTP id l5OE1IFQ047681; Sun, 24 Jun 2007 09:01:18 -0500 (CDT) (envelope-from root@serene.no-ip.org) Received: (from root@localhost) by serene.no-ip.org (8.14.1/8.14.1/Submit) id l5OE1DgM047680; Sun, 24 Jun 2007 09:01:13 -0500 (CDT) (envelope-from root) Date: Sun, 24 Jun 2007 09:01:13 -0500 (CDT) Message-Id: <200706241401.l5OE1DgM047680@serene.no-ip.org> To: FreeBSD-gnats-submit@freebsd.org From: "Conrad J. Sabatier" X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@freebsd.org Subject: devel/pkg-config: enable threading in configure (Makefile) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Conrad J. Sabatier" List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jun 2007 14:41:55 -0000 >Submitter-Id: current-users >Originator: Conrad J. Sabatier >Organization: none >Confidential: no >Synopsis: devel/pkg-config: enable threading in configure (Makefile) >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 7.0-CURRENT amd64 >Environment: System: FreeBSD serene.no-ip.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sat Jun 23 06:30:50 CDT 2007 root@serene.no-ip.org:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: Whatever reason may have existed at one time for disabling threading in this package, it no longer seems to be relevant. I've rebuilt it under amd64-CURRENT with threading enabled, and it seems to work just fine. >How-To-Repeat: N/A >Fix: Patch included below --- devel__pkg-config__Makefile.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/pkg-config/Makefile,v retrieving revision 1.48 diff -d -u -r1.48 Makefile --- Makefile 11 Sep 2006 21:34:02 -0000 1.48 +++ Makefile 24 May 2007 02:07:17 -0000 @@ -34,7 +34,6 @@ PC_PATH:= ${PC_PATH}:${X11BASE}/lib/pkgconfig .endif -CONFIGURE_ARGS= --disable-threads \ - --with-pc-path="${PC_PATH}" +CONFIGURE_ARGS= --with-pc-path="${PC_PATH}" .include --- devel__pkg-config__Makefile.diff ends here ---